.auth-verification-message {
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 14px;
    backdrop-filter: blur(24px);
    border: 1px solid var(--warning-border);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: slideInRight 0.4s ease;
    box-shadow: 0 8px 32px var(--black-30);
}

.dark-theme .auth-verification-message {
    background: var(--dropdown-dark-bg);
    color: var(--dark-text);
}

.auth-verification-message.show {
    display: flex;
}

.auth-verification-message .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dark-theme .auth-verification-message .icon {
    color: var(--warning-primary);
}

.auth-verification-message .message-text {
    flex: 1;
}

.auth-verification-message .verify-link {
    color: var(--dark-secondary);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-verification-message .verify-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--dark-secondary);
    transition: width 0.3s ease;
}

.auth-verification-message .verify-link:hover {
    opacity: 0.8;
}

.auth-verification-message .verify-link:hover::after {
    width: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .auth-verification-message {
        bottom: 100px;
        right: 12px;
        left: 12px;
        padding: 14px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .auth-verification-message {
        padding: 12px 16px;
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .auth-verification-message .icon {
        width: 18px;
        height: 18px;
    }
}   