/* Import Google Font “Inter” */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body, input, select, textarea, button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 18px;
    color: #212529;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Bootstrap-like fluid container with max width */
.container {
    width: 100%;
    max-width: 1300px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 40px auto;
    background: #fff;
    border-radius: 0.375rem; /* 6px rounded corners */
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    box-sizing: border-box;
}

/* Bootstrap-style buttons */
button, .btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 0.5rem 1.25rem;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
                box-shadow 0.15s ease-in-out;
    cursor: pointer;
    box-shadow: 0 0.25rem 0.5rem rgba(13,110,253,0.3);
    width: auto;
    min-width: 100px;
}

button:hover, .btn:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 0.5rem 1rem rgba(11,94,215,0.5);
}

/* Form controls like Bootstrap */
input[type="text"], input[type="email"], input[type="password"], select, textarea {
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1.125rem; /* 18px */
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1.5px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
    border-color: #0d6efd;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Card-style boxes for tickets or sections */
.ticket, .section-box {
    background: #fff;
    border-radius: 0.75rem; /* 12px */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.05);
    transition: box-shadow 0.15s ease-in-out;
}

.ticket:hover, .section-box:hover {
    box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .container {
        margin: 20px 15px;
        padding: 1rem;
        max-width: 100%;
    }

    button, .btn {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.25rem;
        min-width: auto;
    }
}
