
        .delete-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eaecf0;
            text-align: center;
        }

        .delete-btn {
            background: #fff;
            color: #d92d20;
            border: 1px solid #fee4e2;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .delete-btn:hover { background: #fef3f2; border-color: #d92d20; }

        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            display: none; justify-content: center; align-items: center; z-index: 1000;
        }
        .modal-box {
            background: white; padding: 2rem; border-radius: 16px; width: 90%; max-width: 400px;
            text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .modal-title { font-size: 1.2rem; font-weight: 700; color: #0f0518; margin-bottom: 0.5rem; }
        .modal-text { color: #667; margin-bottom: 1.5rem; font-size: 0.95rem; }
        
        .modal-actions { display: flex; gap: 1rem; justify-content: center; }
        .btn-cancel { background: #fff; border: 1px solid #d0d5dd; color: #344054; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; }
        .btn-confirm-delete { background: #d92d20; color: white; border: none; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: 600; }
        
        .code-input { 
            display: none; margin-bottom: 1rem; width: 100%; padding: 10px; font-size: 1.2rem; text-align: center; letter-spacing: 5px; border: 1px solid #d0d5dd; border-radius: 8px; 
        }
.auth-container {
    padding-top: 120px; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
}


.auth-box {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    padding: 32px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: #0f0518;
    margin-bottom: 0.5rem;
}

.auth-header p { color: #667; }


.input-group { margin-bottom: 1.25rem; }

.input-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #344054;
    font-size: 0.9rem;
}

.input-group input, 
.input-group textarea, 
.input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    font-size: 16px; 
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    box-sizing: border-box; 
    background: #fff;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: #6C63FF;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}


.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .input-group { flex: 1; }


.time-row {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start; 
}


.time-separator {
    padding-top: 2.4rem; 
    color: #667;
    font-size: 0.9rem;
    font-weight: 500;
}

.time-hint {
    font-size: 0.8rem;
    color: #667085;
    margin-top: 0.4rem;
    font-style: italic;
    min-height: 1.2rem;
}


.ticket-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-top: 0.2rem;
}

.ticket-table th {
    text-align: left;
    font-size: 0.75rem;
    color: #667085;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.2rem;
    padding-left: 4px;
}

.ticket-row td {
    vertical-align: top;
    padding-right: 8px;
}
.ticket-row td:last-child { padding-right: 0; }

.remove-btn {
    background: #fee4e2;
    color: #d92d20;
    border: none;
    width: 44px; 
    height: 44px; 
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.add-ticket-btn {
    width: 100%;
    background: #f9fafb;
    border: 2px dashed #d0d5dd;
    color: #667085;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}


.submit-btn {
    background: #0f0518;
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}
.submit-btn:hover { background: #6C63FF; transform: translateY(-1px); }
.submit-btn:disabled { background: #98a2b3; cursor: not-allowed; transform: none; }

.message { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.message.success { color: #039855; }
.message.error { color: #d92d20; }



@media (max-width: 600px) {
   
    .auth-container { padding-left: 10px; padding-right: 10px; }
    .auth-box { padding: 20px 15px; }

    .time-row { gap: 8px; }
    .time-separator { font-size: 0.8rem; padding-top: 2.2rem; } 

    .ticket-table thead { display: none; }

    .ticket-row {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 12px; 
        background: #f9fafb;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
        border: 1px solid #eaecf0;
    }


    .ticket-row td:nth-child(1) {
        grid-column: 1 / -1; 
        padding-right: 0;
    }
    
  
    .ticket-row td:nth-child(2) { padding-right: 0; }
    
 
    .ticket-row td:nth-child(3) { padding-right: 0; }

  
    .ticket-row td:nth-child(4) { padding-right: 0; }

 
    .ticket-row td:nth-child(5) {
        padding-right: 0;
        display: flex;
        align-items: flex-end; 
    }


    
    .ticket-row td:nth-child(1)::before { content: "Billetnavn"; }
    .ticket-row td:nth-child(2)::before { content: "Pris (kr.)"; }
    .ticket-row td:nth-child(3)::before { content: "Antal"; }
    .ticket-row td:nth-child(4)::before { content: "Farve"; }


    .ticket-row td::before { 
        display: block; 
        font-size: 0.75rem; 
        color: #667085; 
        margin-bottom: 6px; 
        font-weight: 700; 
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .t-color {
        width: 100%;
        height: 44px !important; 
        border-radius: 8px;
    }

    .remove-btn {
        width: 100%;
        height: 44px;
        border-radius: 8px;
    }
}