/**
 * Public styles for Wildlife Memberships and Donations plugin
 */

.wmd-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.wmd-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.wmd-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.wmd-form input[type="text"],
.wmd-form input[type="email"],
.wmd-form input[type="number"],
.wmd-form select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.wmd-form input[type="checkbox"] {
    margin-right: 8px;
}

.wmd-form button {
    background: #27ae60;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wmd-form button:hover {
    background: #219a52;
}

.wmd-form button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.wmd-error {
    color: #e74c3c;
    background: #fdf2f2;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
    margin: 10px 0;
}

.wmd-success {
    color: #27ae60;
    background: #f0f9f4;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
    margin: 10px 0;
}

.wmd-member-portal {
    max-width: 800px;
    margin: 20px 0;
}

.wmd-portal-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.wmd-portal-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    color: #2c3e50;
}

.wmd-portal-content {
    padding: 20px;
}

.wmd-status-active {
    color: #27ae60;
    font-weight: 600;
}

.wmd-status-expired {
    color: #e74c3c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .wmd-form {
        margin: 10px 0;
        padding: 15px;
    }
    
    .wmd-member-portal {
        margin: 10px 0;
    }
    
    .wmd-portal-content {
        padding: 15px;
    }
}