         /* start sign up model */
        .modal-content {
            background-color: #102950;
            color: #ffffff;
            border-radius: 10px;
        }

        .btn-social {
            width: 100%;
            margin-bottom: 10px;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease, border 0.3s ease;
        }

        .btn-social:hover {
            opacity: 0.8;
            border: 2px solid #ffffff;
        }

        .btn-google {
            background-color: #db4437;
        }

        .btn-facebook {
            background-color: #3b5998;
        }

        .btn-instagram {
            background-color: #e1306c;
        }

        .social-logo {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .form-control {
            background-color: #1a3c7a;
            border: none;
            color: #ffffff;
        }

        .form-control::placeholder {
            color: #a0b4d8;
        }

        .tab-content {
            padding: 20px;
        }

        .nav-link {
            color: #a0b4d8;
        }

        .nav-link.active {
            color: #ffffff;
            background-color: #1a3c7a;
        }

        .divider {
            display: flex;
            align-items: center;
            color: #a0b4d8;
            margin: 20px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #a0b4d8;
            margin: 0 10px;
        }

        /* end sign up model */

        .user-avatar {
            display: inline-block;
        }

        .avatar-placeholder {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        .dropdown-menu {
            background-color: #102950;
            border: 1px solid #1a3c7a;
        }

        .dropdown-item {
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #1a3c7a;
            color: #ffffff;
        }

        .dropdown-item i {
            margin-right: 8px;
        }

        .dropdown-divider {
            border-color: #1a3c7a;
        }

        /* Add these styles to the <style> section in master.blade.php */

    /* User Avatar and Dropdown Styles */
    .user-avatar {
        display: inline-block;
    }

    .user-avatar img {
        object-fit: cover;
        border: 2px solid #667eea;
    }

    .avatar-placeholder {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
        border: 2px solid #667eea;
    }

    .dropdown-toggle::after {
        margin-left: 8px;
    }

    .dropdown-menu {
        background-color: #102950;
        border: 1px solid #1a3c7a;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        min-width: 220px;
    }

    .dropdown-item {
        color: #ffffff;
        transition: all 0.3s ease;
        padding: 10px 20px;
    }

    .dropdown-item:hover {
        background-color: #1a3c7a;
        color: #ffffff;
        transform: translateX(5px);
    }

    .dropdown-item i {
        margin-right: 8px;
        font-size: 16px;
    }

    .dropdown-divider {
        border-color: #1a3c7a;
        margin: 5px 0;
    }

    /* Modal Styles for Profile and Password */
    .modal-content .form-label {
        color: #ffffff;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .alert-success {
        background-color: #28a745;
        color: white;
        border: none;
    }

    .alert-danger {
        background-color: #dc3545;
        color: white;
        border: none;
    }

    .alert-info {
        background-color: #17a2b8;
        color: white;
        border: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .dropdown-menu {
            min-width: 180px;
        }
        
        .dropdown-item {
            padding: 8px 15px;
            font-size: 14px;
        }
    }