.sejoli-membership-container {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
}

.sejoli-membership-status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sejoli-membership-status-badge.status-active {
    background: #46b450;
    color: white;
}

.sejoli-membership-status-badge.status-expired {
    background: #dc3232;
    color: white;
}

.sejoli-membership-status-badge.status-inactive {
    background: #666;
    color: white;
}

.sejoli-membership-text {
    font-size: 16px;
    line-height: 1.6;
}

.sejoli-membership-notice {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    color: #856404;
}

.membership-expiry {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .sejoli-membership-container {
        margin: 10px 0;
        padding: 15px;
    }
    
    .sejoli-membership-text {
        font-size: 14px;
    }
}

/* Animation untuk status badge */
.sejoli-membership-status-badge {
    transition: all 0.3s ease;
}

.sejoli-membership-status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}