.custom-toast {
    min-width: 250px;
    border-radius: 0.5rem;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.3s ease;
}

.custom-toast.showing {
    opacity: 1;
    transform: translateX(0);
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Add this to make the dropdown trigger look nice */
.dropdown-toggle {
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-toggle:hover {
    opacity: 0.8;
}

/* Remove default button styles */
.btn-link:hover {
    background: none !important;
    border: none !important;
}

/* Navbar Dropdown Styles */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-toggle {
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.navbar .dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.navbar .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
    margin: 0.125rem 0.5rem;
    width: auto;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar .dropdown-item.text-danger:hover {
    background-color: #fee;
    color: #dc3545 !important;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
}

/* Ensure proper positioning */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* User info styling */
.navbar-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.navbar-user-info img {
    border: 2px solid #e9ecef;
}

.navbar-user-info span {
    font-weight: 500;
    color: #495057;
}

/* Bootstrap icon sizing */
.navbar .bi {
    width: 1rem;
    height: 1rem;
}

#logoutBtn {
    border-width: 2px;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s ease;
}

#logoutBtn:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
