@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

.menu-container {
	
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.menu-button {
    background-color: #003d79; /* Eleagent Blue */
    color: #ffffff; /* White text */
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
   font-family: 'Cairo', sans-serif;
}

.menu-button:hover {
    background-color: #0056b3; /* Slightly lighter blue */
}

.popup-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #003d79; /* Eleagent Blue */
    border: 1px solid #002b5b; /* Darker shade for border */
    border-radius: 5px;
    width: 340px;
    z-index: 1000;
}

.popup-menu a {
	font-size: .95em;
    display: block;
    padding: 2px;
    color: #ffffff; /* White text */
    text-decoration: none;
    text-align: right;
    border-bottom: 1px solid #002b5b; /* Darker shade for border */
}

.popup-menu a:hover {
    background-color: #0056b3; /* Slightly lighter blue on hover */
    color: #eaf4ff; /* Light blue text on hover */
}

.popup-menu a:last-child {
    border-bottom: none;
}