body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f9f9f9;
    padding-top: 60px;
}

.main-header {
    background-color: #c0ebeb;
    color: #000;
    padding: 10px 45px; /* ✅ مسافة أوضح من اليمين واليسار */
    position: fixed;
    top: 0;
    right: 275px; /* يترك مكان للقائمة الجانبية */
    left: 8px;
    height: 60px;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 16px 16px;
    font-weight: bold;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.profile-dropdown {
    position: relative;
}

.profile-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.profile-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.profile-name {
    font-weight: bold;
    color: #333;
}

.profile-toggle .fas {
    font-size: 14px;
    color: #333;
}

.profile-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-width: 180px;
    z-index: 2000;
    padding: 10px 0;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-menu a:hover {
    background-color: #f0f0f0;
}
