.strd-layout {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.navbar {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #49D1D9; 
    padding: 14px 0; 
    width: 100%;
    position: relative;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 32px; 
    cursor: pointer;
}

.logo a { 
    text-decoration: none !important; 
}

.logo-ocean { color: #ffffff; }
.logo-sight { color: #1a237e; }

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 20px;
    transition: 0.2s;
    white-space: nowrap; 
}

.nav-links a:hover {
    color: #1a237e;
}

.auth-buttons a {
    white-space: nowrap;
}

.profile-box {
    position: relative;
    margin-left: 30px;
    padding: 5px;
}

.profile-icon {
    color: white;
    font-size: 20px; 
    cursor: pointer;
    background: #222;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.dropdown-menu {
    display: none; 
    position: absolute;
    top: 45px;
    right: 0;
    width: 320px;
    background: white;
    border: 2px solid #49D1D9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
}

.user-info-header {
    background-color: #49D1D9;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: black;
}

.dropdown-avatar {
    width: 60px;
    height: 65px;
    background-color: #333;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.dropdown-avatar i { 
    color: white; 
    font-size: 45px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.user-text h3 { 
    font-size: 20px; 
    margin-bottom: 5px; 
    font-weight: bold;
    text-transform: capitalize;
}

.user-text p { 
    font-size: 12px; 
    margin: 2px 0; 
    color: #333; 
}

.dropdown-items { list-style: none; padding: 0; }

.dropdown-items li { 
    border-top: 8px solid #49D1D9;
}

.dropdown-items li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.2s;
}

.dropdown-items li a i {
    font-size: 26px;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.dropdown-items li a:hover { background-color: #f1f1f1; }

.dropdown-menu.show {
    display: block !important;
}

@media screen and (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        flex-direction: column; 
        gap: 15px;
        width: 95%;
    }

    .nav-right {
        width: 100%;
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 15px;
    }

    .nav-links {
        justify-content: center;
        gap: 15px;
    }

    .nav-links li {
        margin-left: 0; 
    }

    .nav-links a {
        font-size: 16px; 
    }

    .auth-buttons {
        margin-left: 0;
        justify-content: center;
    }

    .profile-box {
        margin-left: 10px;
    }

    aside, .sidebar-admin-container, .sidebar, .sidebar-toggle { 
        display: none !important; 
    }
}