/* Elderink Subscription Manager - Frontend Styles */

.elderink-subscription-form {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.elderink-subscription-form h3 {
    margin-top: 0;
    color: #333;
}

.elderink-form-field {
    margin-bottom: 15px;
}

.elderink-form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.elderink-form-field input,
.elderink-form-field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.elderink-form-field input:focus,
.elderink-form-field select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

.elderink-subscription-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.elderink-subscription-type {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.elderink-subscription-type:hover {
    border-color: #0073aa;
    background-color: #f8f9fa;
}

.elderink-subscription-type.selected {
    border-color: #0073aa;
    background-color: #e7f3ff;
}

.elderink-subscription-type h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.elderink-subscription-type .price {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    margin: 10px 0;
}

.elderink-subscription-type .description {
    color: #666;
    font-size: 14px;
}

.elderink-member-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

.elderink-member-card h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.elderink-member-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.elderink-member-status.active {
    background-color: #d4edda;
    color: #155724;
}

.elderink-member-status.expired {
    background-color: #fff3cd;
    color: #856404;
}

.elderink-member-status.inactive {
    background-color: #f8d7da;
    color: #721c24;
}