/* Modern styling voor het registratie systeem */
:root {
    --primary-color: #0066cc;
    --secondary-color: #003366;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}


.registrations-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.registrations-table th,
.registrations-table td {
    padding: 2px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.registrations-table th {
    background-color: var(--light-gray);
    font-weight: 400;
}

.registrations-table input,
.registrations-table select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
}

/* Algemene styles voor alle templates */

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    border-bottom: 3px solid #0066cc;
    margin-bottom: 30px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo h1 {
    margin: 0;
    color: #0066cc;
    font-size: 24px;
}

.language-selector {
    font-size: 14px;
}

.language-selector a {
    color: #666;
    text-decoration: none;
    padding: 0 5px;
}

.language-selector a.active {
    color: #0066cc;
    font-weight: bold;
}

.language-selector a:hover {
    color: #0066cc;
}

.user-info {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    border-left: 4px solid #0066cc;
}

.user-info i {
    margin-right: 8px;
    color: #0066cc;
}

.user-info a {
    margin-left: 10px;
    color: #0066cc;
    text-decoration: none;
}

/* Main content */
.main-content {
    min-height: 500px;
    margin-bottom: 40px;
}

/* Session messages */
.session-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    animation: fadeIn 0.5s;
}

/* Footer */
.main-footer {
    background-color: #fff;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #0066cc;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #ccc;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #000;
    font-size: 14px;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #0066cc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .step-indicator .step-label {
        font-size: 12px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.registration-step {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    border: 2px solid var(--border-color);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step-label {
    font-size: 14px;
    color: #666;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: bold;
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.registration-table th,
.registration-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.registration-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.registration-table input,
.registration-table select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
}





.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-danger {
    background-color: var(--error-color);
    color: white;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .registration-table {
        display: block;
        overflow-x: auto;
    }
    
    .step-indicator {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-indicator::before {
        display: none;
    }
}
