/* Custom Toast */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast-msg {
    background: #1f2937;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-left: 4px solid var(--color-gold);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInToast 0.3s forwards ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}
.toast-msg.fadeOut {
    animation: slideOutToast 0.3s forwards ease-in;
}
@keyframes slideInToast {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutToast {
    to { opacity: 0; transform: translateX(100%); }
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
.account-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.account-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--color-gold);
}
.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    width: 260px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: none;
    z-index: 1000;
}
.account-dropdown:hover .account-menu {
    display: block;
    animation: fadeIn 0.2s forwards;
}
.account-menu h4 {
    margin: 0 0 10px 0;
    color: var(--color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}
.account-menu p {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 15px;
}
.admin-link-btn {
    display: none;
    width: 100%;
    background: #ef4444;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.2s;
}
.admin-link-btn:hover {
    background: #dc2626;
}
