/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* PAGE CONTAINER */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.main-header {
    background: white;
    border-bottom: 2px solid #FA8072;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    margin: 0;
}

.site-title .logo {
    color: #FA8072;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: bold;
}

.site-title .logo:hover {
    color: #e57366;
}

/* NAVIGATION */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.welcome {
    font-weight: bold;
}

.role {
    background: #FA8072;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #f0f0f0;
}

.nav-link.logout {
    background-color: #dc3545;
    color: white;
}

.nav-link.logout:hover {
    background-color: #c82333;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding: 40px 20px;
}

/* WELCOME SECTION */
.welcome-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.welcome-section h2 {
    color: #FA8072;
    margin-bottom: 15px;
    font-size: 2em;
}

.welcome-section p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* AUTH OPTIONS */
.auth-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.option-card h2 {
    color: #FA8072;
    margin-bottom: 15px;
}

.option-card p {
    margin-bottom: 20px;
    color: #666;
}

/* AUTH CONTAINERS */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.auth-form-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.auth-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #FA8072;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input:focus {
    border-color: #FA8072;
    outline: none;
    box-shadow: 0 0 5px rgba(250, 128, 114, 0.3);
}

small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FA8072;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #e57366;
}

.btn-primary {
    background-color: #FA8072;
    width: 100%;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #FA8072;
    color: #FA8072;
}

.btn-outline:hover {
    background-color: #FA8072;
    color: white;
}

/* DASHBOARD */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-welcome {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.action-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.action-card:hover {
    transform: translateY(-3px);
}

.action-card h3 {
    color: #FA8072;
    margin-bottom: 10px;
}

.action-card p {
    margin-bottom: 20px;
    color: #666;
}

/* FOOTER */
.main-footer {
    background: white;
    border-top: 1px solid #ddd;
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .main-navigation {
        justify-content: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .auth-options {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .welcome-section {
        padding: 30px 15px;
    }
    
    .option-card {
        padding: 20px;
    }
    
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
}

/* Gebruikersbeheer */
.users-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-header h2 {
    color: #FA8072;
    margin-bottom: 10px;
}

/* Filter card */
.filter-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

/* Table styles */
.users-table-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.users-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.inactive {
    background: #dc3545;
    color: white;
}

/* Role select */
.role-select {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.role-form {
    margin: 0;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
}

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

.inline-form {
    display: inline;
}

.text-muted {
    color: #6c757d;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 25px 0;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #007bff;
}

.page-link:hover {
    background: #e9ecef;
}

.page-link.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-info {
    text-align: center;
    color: #6c757d;
    font-size: 0.9em;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-actions {
        justify-content: center;
    }
    
    .users-table {
        font-size: 0.9em;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Gebruikersbeheer - Vereenvoudigde versie */
.users-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.users-table-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

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

.users-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.users-table tr:hover {
    background-color: #f5f5f5;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.inactive {
    background: #dc3545;
    color: white;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

/* Gebruikersbeheer */
.users-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-header h2 {
    color: #FA8072;
    margin-bottom: 10px;
}

/* Filter card */
.filter-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-row {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.filter-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

/* Table styles */
.users-table-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.users-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.inactive {
    background: #dc3545;
    color: white;
}

/* Role select */
.role-select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.role-form {
    margin: 0;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

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

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

.inline-form {
    display: inline;
}

.text-muted {
    color: #6c757d;
    font-size: 0.9em;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none;
    color: #007bff;
    display: inline-block;
}

.page-link:hover {
    background: #e9ecef;
}

.page-link.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-info {
    text-align: center;
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 10px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .users-table {
        font-size: 0.9em;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .users-table td, .users-table th {
        padding: 8px 4px;
    }
}

/* Results info */
.results-info {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #495057;
}

/* Limit form */
.limit-form {
    display: flex;
    align-items: end;
}

.limit-form .filter-group {
    min-width: auto;
    margin-bottom: 0;
}

.limit-form select {
    padding: 8px;
}

/* Filter row aanpassing */
.filter-row {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-form {
    display: flex;
    gap: 15px;
    align-items: end;
    flex: 1;
}

.filter-form .filter-group {
    flex: 1;
    margin-bottom: 0;
}

/* Debug info (tijdelijk) */
.debug-info {
    background: #fff3cd !important;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Groepenbeheer */
.groups-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-notice {
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Action bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 15px;
}

/* Groups table */
.groups-table-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.groups-table {
    width: 100%;
    border-collapse: collapse;
}

.groups-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.groups-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

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

.member-count {
    font-weight: bold;
    color: #FA8072;
}

.btn-link {
    color: #007bff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9em;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Form container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-card h2 {
    color: #FA8072;
    margin-bottom: 20px;
    text-align: center;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn {
    flex: 1;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    resize: vertical;
}

textarea:focus {
    border-color: #FA8072;
    outline: none;
    box-shadow: 0 0 5px rgba(250, 128, 114, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .groups-table {
        font-size: 0.9em;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Uitnodigingen */
.invites-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.invite-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.invite-card.active {
    border-color: #28a745;
}

.invite-card.expired {
    border-color: #dc3545;
    opacity: 0.7;
}

.invite-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.invite-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.invite-status.active {
    background: #28a745;
    color: white;
}

.invite-status.expired {
    background: #dc3545;
    color: white;
}

.invite-url {
    margin-bottom: 15px;
}

.url-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.url-container code {
    flex: 1;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9em;
    word-break: break-all;
}

.btn-copy {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
}

.btn-copy:hover {
    background: #5a6268;
}

.invite-details {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
}

.detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

.detail span {
    color: #6c757d;
}

/* Join pagina */
.join-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
}

.join-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.invite-info {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.join-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.login-required {
    margin: 20px 0;
}

/* Group members */
.group-members-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Statistieken */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #FA8072;
}

.stat-number.pending {
    color: #ffc107;
}

.stat-number.rejected {
    color: #dc3545;
}

/* Add member form */
.add-member-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.add-member-form .form-row {
    display: flex;
    gap: 15px;
    align-items: end;
}

.add-member-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Members sections */
.members-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.members-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.members-section.pending {
    border-left: 4px solid #ffc107;
}

.members-section.approved {
    border-left: 4px solid #28a745;
}

.members-section.rejected {
    border-left: 4px solid #dc3545;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.member-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ddd;
}

.member-card.pending {
    border-left-color: #ffc107;
}

.member-card.rejected {
    border-left-color: #dc3545;
}

.member-info {
    margin-bottom: 10px;
}

.member-email, .member-role, .member-joined {
    display: block;
    font-size: 0.9em;
    color: #666;
}

.member-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Members table */
.members-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.members-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.members-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

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

.badge-admin {
    background: #FA8072;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 5px;
}

.no-members {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Group info */
.group-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.info-item {
    padding: 10px;
    background: white;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .add-member-form .form-row {
        flex-direction: column;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .member-actions {
        flex-direction: column;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .members-table {
        overflow-x: auto;
    }
}

.join-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 0.9em;
}

/* Mijn Groepen */
.my-groups-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-notice {
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9em;
}

.admin-notice a {
    color: #1976d2;
    font-weight: bold;
}

/* Groups overview */
.groups-overview {
    margin: 30px 0;
}

.no-groups {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-groups-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.action-links {
    margin-top: 20px;
}

.action-links .btn {
    margin: 0 10px;
}

/* Groups grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.group-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #ddd;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.group-header h3 {
    margin: 0;
    color: #333;
    flex: 1;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.status-badge.approved {
    background: #28a745;
    color: white;
}

.status-badge.pending {
    background: #ffc107;
    color: #212529;
}

.status-badge.rejected {
    background: #dc3545;
    color: white;
}

.group-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

.detail {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.detail strong {
    color: #333;
}

.status-text {
    font-style: italic;
}

.group-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Quick actions */
.quick-actions {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.quick-actions h3 {
    margin-bottom: 15px;
    color: #333;
}

.quick-actions .action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .group-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .group-actions {
        flex-direction: column;
    }
    
    .quick-actions .action-buttons {
        flex-direction: column;
    }
    
    .action-links .btn {
        display: block;
        margin: 10px 0;
    }
}

.join-options {
    margin: 25px 0;
    text-align: center;
}

.join-options h4 {
    margin-bottom: 20px;
    color: #333;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.option-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FA8072;
}

.option-card h5 {
    margin: 0 0 10px 0;
    color: #333;
}

.option-card p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.join-group-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
}

.join-group-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.alternative-actions {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.alternative-actions p {
    margin-bottom: 15px;
    color: #666;
}

/* Profielpagina */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* Profiel sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: #FA8072;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-info h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.role-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.role-badge.superadmin {
    background: #d32f2f;
    color: white;
}

.role-badge.admin {
    background: #f57c00;
    color: white;
}

.role-badge.user {
    background: #388e3c;
    color: white;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5em;
    color: #FA8072;
}

.stat span {
    font-size: 0.8em;
    color: #666;
}

.quick-actions-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-actions-card h4 {
    margin-bottom: 15px;
    color: #333;
}

.quick-actions-card .action-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-actions-card .btn {
    text-align: left;
    justify-content: flex-start;
}

/* Profiel content */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-card h3 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* Mini groups list */
.groups-mini-list {
    max-height: 300px;
    overflow-y: auto;
}

.mini-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 8px;
}

.status-badge.mini {
    padding: 2px 6px;
    font-size: 0.7em;
}

.btn-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.8em;
}

.btn-link:hover {
    text-decoration: underline;
}

.view-all {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.no-groups {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 968px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        order: 2;
    }
    
    .profile-content {
        order: 1;
    }
    
    .profile-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mini-group-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .group-actions {
        align-self: flex-end;
    }
}

/* Impersonation waarschuwing */
.impersonation-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-stop-impersonate {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    text-decoration: none;
}

.btn-stop-impersonate:hover {
    background: #c82333;
}

/* Impersonation knop in users tabel */
.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

/* MESSAGES */
.error {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #d32f2f;
}

.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #2e7d32;
}

.info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #bee5eb;
}
.warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ffeeba;
}

/* Gecentreerde messages met maximale breedte */
.error, .success, .info, .warning {
    white-space: pre-wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive aanpassingen voor mobiel */
@media (max-width: 768px) {
    .error, .success, .info, .warning {
        max-width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
}

/* Optioneel: animatie voor fade-in effect */
.error, .success, .info, .warning {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Boards styling */

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
}

.info-item {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.info-item strong {
    color: #333;
}

/* Responsive */

/* Boards styling - toevoegen aan bestaande CSS */

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
}

.info-item {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.info-item strong {
    color: #333;
}

/* Form row voor checkboxen */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== VERBETERDE BORDEN STYLING ===== */

/* Compact board meta info */

/* Boards container -zelfde als groups */

/* Gebruik bestaande groups-grid styling voor consistentie */

/* Speciale board card styling - compactere versie */

/* Responsive aanpassingen */

/* ===== BOARD.PHP STYLING (verplaatsen naar styles.css) ===== */

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

/* Responsive voor board.php */
@media (max-width: 768px) {
    
    .modal-content {
        margin: 5% auto;
        padding: 15px;
    }
}

/* ===== VERBETERDE BORDEN FILTERING ===== */

/* Maximum bereikt styling */

/* Filter form verbeteringen */
.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.filter-group input,
.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: end;
}

/* Status set badge in board cards */
.status-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    white-space: nowrap;
}

/* Results info verbetering */
.results-info {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #495057;
    border-left: 4px solid #FA8072;
}

/* Warning box voor maximum bereikt */
.warning {
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border-left: 4px solid #ffc107;
}

.warning a {
    color: inherit;
    text-decoration: underline;
}

.warning a:hover {
    text-decoration: none;
}

/* Responsive filter form */
@media (max-width: 768px) {
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        justify-content: center;
    }
}

/* Compact board meta layout */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main h1 {
    color: #FA8072;
    margin: 0 0 10px 0;
}

.header-main h2 {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 1.1em;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== EDIT BOARD STYLES ===== */

/* Form cards */

/* Info card */

.info-grid {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9em;
}

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

.info-item strong {
    color: #333;
}

/* Actions card */

.action-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Danger card */

/* Board meta */

/* Header actions aanpassing voor consistentie */


/* ===== BOARDS.PHP STYLES ===== */

/* Groups grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* Group card */
.group-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #FA8072;
    transition: transform 0.3s, box-shadow 0.3s;
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.group-header {
    margin-bottom: 15px;
}

.group-header h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.3em;
}

/* Status badges */
.status-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    white-space: nowrap;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

.group-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

.detail {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #666;
}

.detail strong {
    color: #333;
}

/* Action buttons alignment */
.group-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.group-actions .btn {
    min-width: 120px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .groups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .group-card {
        padding: 20px;
    }
}

/* Extra styling voor het bord */

/* ===== BOARD.PHP SPECIFIEKE STYLING ===== */

/* Status legenda */

/* Items grid */

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.modal h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.3em;
}

/* No items state */

/* Long polling indicator */

/* Responsive design */
@media (max-width: 768px) {
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
}

/* Animation for status updates */
@keyframes statusUpdate {
    0% { background-color: #e8f5e9; }
    100% { background-color: white; }
}

/* Loading states */

@keyframes loadingDots {
    0%, 20% { content: " ."; }
    40% { content: " .."; }
    60%, 100% { content: " ..."; }
}

/* ===== SIMPELE BOARD STYLING ===== */

/* Status legenda */

/* Items grid */

/* Responsive */

/* ===== SIMPELE BOARD STYLING ===== */

/* Responsive */

/* ===== STATUS SETS STYLING ===== */

/* ===== STATUS SET FORM STYLING ===== */

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section {
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.form-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.2em;
}

/* Responsive voor status sets */
@media (max-width: 768px) {
    
    .action-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .action-links .btn {
        width: 200px;
    }
}

/* Responsive voor status set form */
@media (max-width: 1200px) {
    .form-container {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    
    .form-section {
        padding: 20px;
    }
    
    .form-card {
        padding: 20px;
    }
}

/* Preview voor status opties in edit form */

/* Modal styles for item editing */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    position: absolute;
    top: -150px;
    left: 35%;
    right: 35%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #333;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

/* ===== MUZIEK BIBLIOTHEEK STYLING ===== */

.songs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.song-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #FA8072;
    transition: transform 0.3s, box-shadow 0.3s;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.song-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}

.favorite-badge {
    color: #ffc107;
    font-size: 1.2em;
}

.song-info {
    margin-bottom: 15px;
}

.song-info .detail {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #666;
}

.song-info .detail strong {
    color: #333;
}

.song-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.no-songs {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

.no-songs-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-songs h3 {
    margin-bottom: 15px;
    color: #333;
}

.no-songs p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Song form styling */
.song-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Responsive voor songs */
@media (max-width: 768px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .song-actions {
        flex-direction: column;
    }
    
    .song-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .song-header {
        flex-direction: column;
        gap: 10px;
    }
}

/* Modal fixes voor songs */
.modal-content {
    max-height: 95vh;
    overflow-y: auto;
}

.song-form {
    max-height: calc(85vh - 50px);
    overflow-y: auto;
    padding-right: 10px;
}

/* Zorg dat form actions altijd zichtbaar zijn */
.form-actions {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* Song form compact styling */
.song-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.song-form .form-row:last-of-type {
    grid-template-columns: 2fr 1fr 1fr;
}

.song-form .form-group {
    margin-bottom: 15px;
}

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

.song-form input, 
.song-form select, 
.song-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.song-form .form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Modal responsive */
@media (max-width: 768px) {
    .song-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .song-form .form-row:last-of-type {
        grid-template-columns: 1fr;
    }
}

/* Filter en lijst styling */
.filter-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.view-mode-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.view-mode-toggle .btn.active {
    background: #FA8072;
    color: white;
}

/* Lijst weergave */
.songs-list-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.songs-table {
    width: 100%;
    border-collapse: collapse;
}

.songs-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

.songs-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

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

.songs-table .song-actions {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .filter-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .songs-table {
        font-size: 0.9em;
    }
    
    .songs-table .song-actions {
        flex-direction: column;
    }
    
    .songs-table th,
    .songs-table td {
        padding: 8px 4px;
    }
}

/* ===== EDIT SONG STYLING ===== */

.edit-song-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.edit-song-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.edit-song-form .form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.edit-song-form .form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.edit-song-form .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.edit-song-form .current-file {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Lyrics Editor Styling */
.lyrics-editor {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lyric-line-editor {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fafafa;
}

.lyric-line-editor .line-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.lyric-line-editor .section-select {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.lyric-line-editor .time-inputs {
    display: flex;
    gap: 5px;
}

.lyric-line-editor .time-inputs input {
    width: 100px;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.lyric-line-editor textarea {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.lyric-line-editor textarea:focus {
    border-color: #FA8072;
    outline: none;
}

.edit-song-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive voor edit song */
@media (max-width: 768px) {
    .edit-song-form {
        padding: 20px;
    }
    
    .lyric-line-editor .line-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lyric-line-editor .time-inputs {
        justify-content: space-between;
    }
    
    .edit-song-form .form-actions {
        flex-direction: column;
    }
    
    .edit-song-form .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
}

/* ===== PLAYER STYLING ===== */

.player-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.player-header {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.player-header .header-main h1 {
    color: #FA8072;
    margin: 0 0 8px 0;
    font-size: 1.8em;
}

.song-meta {
    color: #666;
    margin: 0;
    font-size: 1.1em;
}

.header-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.player-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.audio-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.audio-player {
    margin-bottom: 20px;
}

.audio-player audio {
    width: 100%;
    border-radius: 8px;
}

.player-controls {
    display: flex;
    gap: 25px;
    align-items: end;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
}

.time-control {
    display: flex;
    gap: 8px;
    align-items: center;
}

.time-control input {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.lyrics-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.lyrics-container {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    scroll-behavior: smooth; /* Voor smooth scroll */
}

/* Lyrics styling */
.lyric-line {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.lyric-line:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.lyric-line.passed {
    opacity: 0.6;
    background: #f8f9fa;
}

.lyric-line.active {
    background: #FA8072;
    color: white;
    border-color: #FA8072;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.3);
}

.lyric-line.upcoming {
    background: #fff3cd;
    border-color: #ffeaa7;
}

.section-header {
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lyric-line.active .section-header {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.3);
}

.chords-line {
    font-family: 'Courier New', Courier, monospace;
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.2;
    white-space: pre;
    letter-spacing: 0.5px;
    word-break: keep-all;
    overflow-x: auto;
}

.lyric-line.active .chords-line {
    color: rgba(255,255,255,0.9);
    font-size: 0.9em; /* Zelfde font en grootte blijven */
}

.lyrics-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    line-height: 1.4;
    white-space: pre;
    letter-spacing: 0.5px;
    overflow-x: auto;
}

.lyric-line.active .lyrics-text {
    font-size: 0.9em;
    font-weight: 500;
    color: white; /* Alleen kleur veranderen, geen font */
}

.no-lyrics {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-lyrics p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Scrollbar styling */
.lyrics-container::-webkit-scrollbar {
    width: 8px;
}

.lyrics-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background: #FA8072;
    border-radius: 4px;
}

.lyrics-container::-webkit-scrollbar-thumb:hover {
    background: #e57366;
}

/* Responsive */
@media (max-width: 768px) {
    .player-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .player-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .control-group {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .lyric-line {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .lyrics-text {
        font-size: 1em;
    }
}

/* Consistent monospace voor zowel invoer als weergave */
.lyric-line-editor textarea[name="chords[]"],
.lyric-line-editor textarea[name="lyrics[]"] {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    white-space: pre;
    letter-spacing: 0.5px;
}

.lyric-line-editor textarea[name="chords[]"] {
    background: #f8f9fa;
    color: #666;
    letter-spacing: 0.8px;
}

/* ===== METRONOME STYLING ===== */

.metronome-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #FA8072;
}

.metronome-section h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
}

.metronome-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
}

.metronome-display {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.beat-indicator {
    font-size: 2em;
    transition: all 0.1s ease;
}

.count-in-display {
    font-size: 1.2em;
    font-weight: bold;
    color: #FA8072;
}

/* Responsive metronome */
@media (max-width: 768px) {
    .metronome-controls {
        grid-template-columns: 1fr;
    }
    
    .metronome-display {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.bpm-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bpm-controls input {
    width: 80px;
}

.bpm-display {
    font-weight: bold;
    color: #FA8072;
    font-size: 1.1em;
}

.tap-help {
    font-size: 0.8em;
    color: #666;
    font-style: italic;
}

/* Setlists styling - voeg toe aan styles.css */
.setlists-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.setlist-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #FA8072;
    transition: transform 0.3s, box-shadow 0.3s;
}

.setlist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.setlist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.setlist-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}

.setlist-badges {
    display: flex;
    gap: 5px;
}

.setlist-info {
    margin-bottom: 15px;
}

.setlist-info .detail {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #666;
}

.setlist-info .detail strong {
    color: #333;
}

.setlist-info .description {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-style: italic;
    color: #666;
}

.setlist-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.no-setlists {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

.no-setlists-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-setlists h3 {
    margin-bottom: 15px;
    color: #333;
}

.no-setlists p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .setlists-grid {
        grid-template-columns: 1fr;
    }
    
    .setlist-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .setlist-actions {
        flex-direction: column;
    }
}

/* Setlist edit styling - voeg toe aan styles.css */
.setlist-edit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.setlist-edit-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.setlist-songs-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h3 {
    margin: 0;
    color: #333;
}

.song-count {
    background: #FA8072;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
}

/* Songs list styling */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.song-item {
    display: grid;
    grid-template-columns: auto 1fr 200px auto;
    gap: 15px;
    align-items: start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.song-item:hover {
    border-color: #FA8072;
    box-shadow: 0 2px 8px rgba(250, 128, 114, 0.2);
}

.song-item.dragging {
    opacity: 0.5;
    background: #e9ecef;
}

.song-handle {
    cursor: grab;
    padding: 8px;
    color: #ccc;
    font-size: 1.2em;
    user-select: none;
}

.song-handle:active {
    cursor: grabbing;
}

.song-info {
    min-width: 0;
}

.song-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
    font-size: 1.1em;
}

.song-artist {
    color: #666;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.song-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.song-meta span {
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    color: #666;
    border: 1px solid #dee2e6;
}

.song-notes textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9em;
    resize: vertical;
    min-height: 60px;
}

.song-actions {
    display: flex;
    gap: 5px;
    align-items: start;
}

/* Sidebar styling */
.add-songs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-section h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
}

.songs-select-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 10px;
}

.songs-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.song-checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.song-checkbox-item:hover {
    background: #f8f9fa;
}

.song-checkbox-item label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}

.song-checkbox-item .song-title {
    font-weight: bold;
    font-size: 0.9em;
}

.song-checkbox-item .song-artist {
    font-size: 0.8em;
    color: #666;
}

.no-songs {
    text-align: center;
    padding: 30px 20px;
    color: #666;
}

.form-actions {
    margin-top: 20px;
}

.btn-block {
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .setlist-edit-layout {
        grid-template-columns: 1fr;
    }
    
    .song-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .song-actions {
        justify-content: flex-end;
    }
}

/* ===== PRINT STYLING ===== */

@media print {
    @page {
        margin: 1cm;
        size: A4;
    }
    
    body {
        font-family: Arial, sans-serif;
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
        margin: 0;
        padding: 0;
    }
    
    .no-print {
        display: none !important;
    }
    
    .page-break {
        page-break-after: always;
    }
    
    .song-item {
        page-break-inside: avoid;
    }
}

/* Print container voor schermweergave */
@media screen {
    .print-container {
        font-family: Arial, sans-serif;
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background: #f5f5f5;
    }
    
    .print-container .print-content {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

/* Print header */
.print-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #FA8072;
}

.print-title {
    font-size: 24pt;
    font-weight: bold;
    color: #FA8072;
    margin: 0 0 10px 0;
}

.print-meta {
    font-size: 12pt;
    color: #666;
    margin: 5px 0;
}

/* Print songs list */
.print-songs-list {
    margin-top: 30px;
}

.print-song-item {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 4px solid #FA8072;
    background: #f8f9fa;
}

.print-song-position {
    font-weight: bold;
    color: #FA8072;
    font-size: 14pt;
    float: left;
    margin-right: 15px;
    min-width: 30px;
}

.print-song-content {
    overflow: hidden;
}

.print-song-title {
    font-weight: bold;
    font-size: 14pt;
    margin: 0 0 5px 0;
    color: #333;
}

.print-song-artist {
    font-style: italic;
    color: #666;
    margin: 0 0 8px 0;
    font-size: 11pt;
}

.print-song-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 10pt;
}

.print-song-detail {
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.print-song-notes {
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 8px;
    font-size: 10pt;
    border-left: 3px solid #ffc107;
}

.print-song-preview {
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 8px;
    font-size: 9pt;
    font-family: 'Courier New', monospace;
    color: #666;
    border-left: 3px solid #17a2b8;
    max-height: 60px;
    overflow: hidden;
}

.print-actions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.print-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 10pt;
}

/* Print buttons */
.btn-print {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background: #FA8072;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 11pt;
}

.btn-print:hover {
    background: #e57366;
}

.btn-print-outline {
    background: transparent;
    border: 2px solid #FA8072;
    color: #FA8072;
}

.btn-print-outline:hover {
    background: #FA8072;
    color: white;
}

/* Performances styling - voeg toe aan styles.css */
.performances-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.performance-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #28a745;
    transition: transform 0.3s, box-shadow 0.3s;
}

.performance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.performance-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}

.performance-date {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: bold;
}

.performance-info {
    margin-bottom: 15px;
}

.performance-info .detail {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #666;
}

.performance-info .detail strong {
    color: #333;
}

.performance-notes {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.performance-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.no-performances {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

.no-performances-icon {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-performances h3 {
    margin-bottom: 15px;
    color: #333;
}

.no-performances p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .performances-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .performance-actions {
        flex-direction: column;
    }
}

/* Performance detail styling - voeg toe aan styles.css */
.performance-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.performance-notes-card {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.performance-notes-card h4 {
    margin: 0 0 10px 0;
    color: #856404;
}

.performance-notes-card p {
    margin: 0;
    color: #856404;
}

.setlists-section {
    margin-top: 30px;
}

.setlists-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.setlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.setlist-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #FA8072;
}

.setlist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.setlist-header h4 {
    margin: 0;
    color: #333;
}

.song-count {
    background: #FA8072;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
}

.setlist-description {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9em;
    color: #666;
}

.setlist-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.no-setlists {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .setlists-grid {
        grid-template-columns: 1fr;
    }
    
    .setlist-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .setlist-actions {
        flex-direction: column;
    }
}

/* Menu styling aanpassingen */
.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #f0f0f0;
}

.nav-link.logout {
    background-color: #dc3545;
    color: white;
}

.nav-link.logout:hover {
    background-color: #c82333;
}

/* Impersonation warning styling */
.impersonation-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-stop-impersonate {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    text-decoration: none;
}

.btn-stop-impersonate:hover {
    background: #c82333;
}

/* Responsive menu */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .impersonation-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .user-info {
        text-align: center;
    }
}

.template-item {
    margin-bottom: 15px;
}

.template-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #FA8072;
}

.template-card h4 {
    margin: 0 0 8px 0;
    color: #333;
}

.template-card p {
    margin: 0 0 8px 0;
    color: #666;
}

/* Edit Song Page Styles */
.lyrics-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.line-actions {
    display: flex;
    gap: 3px;
}

.line-actions .btn-sm {
    padding: 4px 6px;
    font-size: 11px;
}

.btn-move-up, .btn-move-down {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-move-up:hover, .btn-move-down:hover {
    background: #5a6268;
}

.btn-copy-below, .btn-copy-end {
    background: #17a2b8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-copy-below:hover, .btn-copy-end:hover {
    background: #138496;
}

/* Modal styles voor import dialog */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.btn-close:hover {
    color: #000;
}

/* In styles.css */
.optional-column {
    display: none;
}

@media (min-width: 768px) {
    .optional-column {
        display: table-cell;
    }
}

.song-actions .inline-form {
    display: inline-block;
    margin: 0 2px;
}

/* Move/Copy Song Pages */
.move-song-container, .copy-song-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.current-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #17a2b8;
}

.copy-info {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.copy-info h4 {
    margin-top: 0;
    color: #2c3e50;
}

.copy-info ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.copy-info li {
    margin-bottom: 5px;
}

/* Song actions in grid */
.song-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.song-actions .btn-sm {
    padding: 4px 8px;
    font-size: 12px;
    white-space: nowrap;
}

/* Responsive song actions */
@media (max-width: 768px) {
    .song-actions {
        justify-content: center;
    }
    
    .song-actions .btn-sm {
        flex: 1;
        min-width: 0;
        text-align: center;
    }
}

.suggestion-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.suggested-song {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.suggested-song h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.action-buttons-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-buttons-column .btn {
    min-width: 160px;
    text-align: center;
}
