/* Repeat Lening Aanvraag Page Styles */
.range-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.form-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.range-value {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.range-value strong {
    color: #007bff;
    font-size: 18px;
}

.readonly-field {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background: #007bff;
    border: none;
    color: white;
    transition: all 0.2s ease;
    margin-bottom: 80px; /* Extra ruimte onder de button voor bottom tab bar */
}

.submit-button:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.submit-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-group {
    margin-bottom: 0;
}

/* Specifieke styling voor Repeat Lening Aanvraag cards */
.mobile-page .mobile-card {
    padding: 0.75rem; /* Verlaagd van standaard 1rem */
    margin-bottom: 0.75rem; /* Verlaagd van standaard 1rem */
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-control:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

textarea.form-control {
    resize: vertical;
    min-height: 60px; /* Verlaagd van 100px naar 60px */
    max-height: 80px; /* Toegevoegd om hoogte te beperken */
}
