/* Container styling */
.container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Form grid layout */
.ticket-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
    margin-bottom: 1.5rem;
}

.ticket-form-grid .full-width {
    grid-column: 1 / -1;
}

/* Modal actions (button row) */
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Button styles */
.btn {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-green {
    background: #22c55e;
    color: #fff;
}

.btn-green:hover {
    background: #16a34a;
}

.btn-red {
    background: #ef4444;
    color: #fff;
}

.btn-red:hover {
    background: #b91c1c;
}

/* Input and select styling */
input[type="text"], input[type="date"], select, textarea {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    margin-top: 0.3rem;
    margin-bottom: 0.7rem;
    background: #f9fafb;
    transition: border 0.2s;
}

input[type="text"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    border-color: #6366f1;
    outline: none;
}

label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.2rem;
    display: block;
}

textarea {
    min-height: 80px;
    resize: vertical;
}