/* Basic styling - customize as needed */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

.fixed-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh; /* bewust GEEN dvh hier */
    background-image: url('../../static/img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(0); /* force GPU layer */
}

/* Mobile responsive */
@media (max-width: 600px) {
    .tab-button {
        padding: 15px 10px;
        font-size: 14px;
    }

    .tab-content {
        padding: 20px;
    }
}


.logo {
    display: flex;
    max-width: 300px;
    margin: 0 auto;
    color: #FFF;
}

.logo-subtekst {
    margin: 0 auto 30px;
    color: #FFF;
    font-size: 2rem;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}

.container {
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.tab-button {
    flex: 1;
    padding: 15px 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #588057;
    border-bottom: 3px solid #588057;
    font-weight: bold;
}

.tab-button:hover {
    background-color: #f9f9f9;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

h1, h2 {
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
}

.information-text {
    margin-top: 30px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

.info-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

input.field-error,
textarea.field-error {
    border-color: #dc3545;
    outline-color: #dc3545;
}

.required-indicator {
    color: #dc3545;
}

button[type="submit"]:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

button[type="submit"] {
    width: 100%;
    background-color: #588057;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #7eb47c;
}

.program-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item .time {
    font-weight: bold;
    color: #588057;
    min-width: 60px;
}

.program-item .description {
    color: #333;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptcha-notice {
    color: #aaa;
    font-size: 11px;
    margin-top: 12px;
    text-align: center;
}

.recaptcha-notice a {
    color: #aaa;
}
