/* Frontend Styles */
.wlm-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wlm-form-container h2 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.wlm-submit-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.wlm-submit-btn:hover {
    background: #135e96;
}

#wlm-message {
    margin-top: 20px;
}

#wlm-message .success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

#wlm-message .error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.wlm-list-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.wlm-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.activity-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #2271b1;
}

.activity-card h4 {
    margin: 0;
}

.wlm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wlm-table th,
.wlm-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.wlm-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.wlm-table tr:hover {
    background: #f8f9fa;
}

.wlm-list-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-notify,
.btn-edit,
.btn-delete {
    padding: 5px 10px;
    margin: 0 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-notify {
    background: #FF9800;
    color: #fff;
}

.btn-edit {
    background: #2196F3;
    color: #fff;
}

.btn-delete {
    background: #e53935;
    color: #fff;
}

.btn-export {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.wlm-list-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
