/* Veluwehunt Core — Frontend Styles */

/* Forms */
.vh-form {
    max-width: 600px;
}

.vh-form-field {
    margin-bottom: 16px;
}

.vh-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.vh-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.vh-input:focus {
    border-color: #2c5f2d;
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 95, 45, 0.2);
}

select.vh-input {
    height: 38px;
}

textarea.vh-input {
    resize: vertical;
}

.vh-required {
    color: #dc3545;
}

/* Buttons */
.vh-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.vh-btn-primary {
    background-color: #2c5f2d;
    color: #fff;
}

.vh-btn-primary:hover {
    background-color: #1e4620;
}

.vh-btn-danger {
    background-color: #dc3545;
    color: #fff;
}

.vh-btn-danger:hover {
    background-color: #c82333;
}

.vh-btn-small {
    padding: 4px 10px;
    font-size: 12px;
}

/* Notices */
.vh-notice {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.vh-notice-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.vh-notice-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.vh-notice-info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

/* Gebruikersvelden */
.vh-gebruikersvelden {
    margin: 20px 0;
}

.vh-gebruikserveld {
    margin-bottom: 8px;
    padding: 4px 0;
}

/* Inschrijvingen tabel */
.vh-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.vh-table thead th {
    background-color: #f5f5f5;
    font-weight: 600;
    border-bottom: 2px solid #ccc;
}

.vh-table tbody tr:hover {
    background-color: #fafafa;
}

/* Status badges */
.vh-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.vh-status-aangemeld {
    background-color: #fff3cd;
    color: #856404;
}

.vh-status-goedgekeurd {
    background-color: #d4edda;
    color: #155724;
}

.vh-status-afgekeurd {
    background-color: #f8d7da;
    color: #721c24;
}

.vh-status-geannuleerd {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Capgeld info block */
.vh-capgeld-info {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vh-table {
        font-size: 13px;
    }

    .vh-table th,
    .vh-table td {
        padding: 6px 8px;
    }
}
