/* JOTNO Support Tickets Form Styles */
.jotno-ticket-container { 
    max-width: 600px; 
    margin: 0 auto; 
    font-family: inherit; 
}

.jotno-ticket-header { 
    text-align: center; 
    margin-bottom: 25px; 
}

.jotno-ticket-header h3 { 
    margin-bottom: 5px; 
}

.jotno-ticket-form { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.jotno-full-width { 
    grid-column: 1 / -1; 
}

.jotno-ticket-form .form-group { 
    display: flex; 
    flex-direction: column; 
}

.jotno-ticket-form label { 
    font-weight: 600; 
    margin-bottom: 6px; 
}

/* Updated to include type="tel" */
.jotno-ticket-form input[type="text"], 
.jotno-ticket-form input[type="email"], 
.jotno-ticket-form input[type="tel"], 
.jotno-ticket-form select, 
.jotno-ticket-form textarea { 
    width: 100%; 
    min-height: 46px; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
}

.jotno-ticket-form button[type="submit"] { 
    width: 100%; 
    min-height: 46px; 
    background-color: #0073aa; 
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background 0.3s; 
}

.jotno-ticket-form button[type="submit"]:hover { 
    background-color: #005177; 
}

.jotno-success-msg { 
    background: #d4edda; 
    color: #155724; 
    padding: 15px; 
    border-radius: 4px; 
    margin-bottom: 20px; 
    text-align: center; 
}