/* Material Design Styles for Membership Validation */

body {
    background: #f5f5f5;
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    color: #333;
}

.member-validation-card {
    transition: all 0.3s ease;
}

.member-validation-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.card-header {
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 12px 12px 0 0;
}

.member-avatar {
    position: relative;
    z-index: 1;
}

.card-content {
    background: #fff;
}

.member-info p {
    margin: 12px 0;
    line-height: 1.5;
}

.resend-btn {
    transition: all 0.2s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resend-btn:hover {
    background: #3367d6 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.resend-btn:active {
    transform: scale(0.98);
}

.error-card, .success-card {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .member-validation-card {
        margin: 10px;
        max-width: none;
    }

    .card-header {
        padding: 15px;
    }

    .card-content {
        padding: 15px;
    }

    .member-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}
.status-badge.status-active {
    background-color: #16a34a;
}
.status-badge.status-inactive {
    background-color: #dc2626;
}
.status-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}
.status-badge.status-active .dot {
    background-color: #bbf7d0;
}
.status-badge.status-inactive .dot {
    background-color: #fecaca;
}
