/* =========================
   PAGE WRAPPER
========================= */
.ticket-container {
    width: 100%;
    max-width: 700px;

    margin: 120px auto;
    padding: 40px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;

    box-shadow: 0 0 40px rgba(0,0,0,0.4);

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================
   TITLE
========================= */
.ticket-container h1 {
    font-size: 32px;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.subtitle {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* =========================
   FORM
========================= */
#ticketForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   INPUTS
========================= */
#ticketForm input,
#ticketForm select,
#ticketForm textarea {
    width: 100%;
    padding: 12px 14px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);

    color: white;
    font-size: 14px;

    outline: none;
    transition: 0.2s ease;
}

#ticketForm input:focus,
#ticketForm select:focus,
#ticketForm textarea:focus {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* =========================
   FILE INPUT (HIDDEN)
========================= */
#imageUpload {
    display: none;
}

/* =========================
   UPLOAD BOX (CENTERED FIXED)
========================= */
.upload-box {
    width: 100%;
    max-width: 400px;
    height: 120px;

    margin: 0 auto; /* CENTER IT */

    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s ease;

    color: #aaa;
    text-align: center;
}

.upload-box:hover {
    border-color: rgb(150, 201, 201);
    color: white;
    transform: scale(1.02);
}

/* =========================
   IMAGE PREVIEW (CENTERED FIXED)
========================= */
.image-preview {
    display: none;

    max-width: 200px;

    margin: 10px auto 0;

    border-radius: 10px;
}

/* =========================
   TEXTAREA
========================= */
#ticketForm textarea {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   BUTTON
========================= */
#ticketForm button {
    padding: 12px;
    border-radius: 10px;

    border: none;
    cursor: pointer;

    background: white;
    color: black;

    font-weight: bold;
    transition: 0.2s ease;
}

#ticketForm button:hover {
    transform: translateY(-2px);
    background: #ddd;
}

/* =========================
   RESPONSE MESSAGE
========================= */
#responseMessage {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.8;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
    .ticket-container {
        margin: 80px 20px;
        padding: 25px;
    }
}