/* Success and error message styles */
.success-message {
    background-color: #e6f7e6;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.error-message {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Become member and return home buttons */
.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.become-member-btn {
    display: inline-block;
    background: #006938; /* Afriforum green */
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
}

.become-member-btn:hover {
    background: #005a30;
    text-decoration: none !important;
    color: white !important;
}

.return-home-btn {
    display: inline-block;
    background: #6c757d; /* Gray */
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    transition: background 0.3s;
}

.return-home-btn:hover {
    background: #5a6268;
    text-decoration: none !important;
    color: white !important;
}

/* Animation for popup appearance */
.afriforum-member-content-popup {
    animation: afriforum-fade-in 0.3s ease-in-out;
}

@keyframes afriforum-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.become-member-btn:hover {
    background: #005a30;
    text-decoration: none;
}

/* Prevent popup from closing when clicking on it */
.afriforum-member-content-popup > div {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .afriforum-member-content-popup > div {
        width: 90%;
        padding: 20px;
    }
    
    .afriforum-member-content-form button {
        padding: 10px;
    }
}
