* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lightbg {
    background-image: url(assets/img/pattern-14.png);
    background-color: #fff;
}

.patterned {
    background-image: url(assets/img/pattern.png);
}

.patterned-14 {
    background-image: url(assets/img/pattern-14.png);
}


body {
    font-family: "Open Sans", sans-serif;
    background-color: #f8f8f8;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/*.page {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
*/
/* ======================= */
/* Troisième Page : QR Code */
/* ======================= */

.full-ticket-container h1 {
    font-size: 16px;
}

#page-qr .ticket-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ticket-image {
    width: 60%;
    height: 70%;
    margin: 15px 0;
    border-radius: 10px;
}

.ticket-title {
    font-size: 25px;
    font-weight: bold;
    color: #9DBE42;
    margin-bottom: 20px;
    padding: 0 20%;
}

.stadium {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.qr-code img {
    width: 150px;
    margin-bottom: 20px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #9DBE42;
    margin: 20px 0;
}

.share-btn, .tickets-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background-color: #A6C429;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border-radius: 30px;
    padding: 12px 0;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-share {
    background-color: #8BC34A; /* Green button */
    color: #fff;
}

.btn-share:hover {
    background-color: #7cb342; /* Darker green on hover */
}

.btn-all-tickets {
    background-color: #1f2f60; /* Blue button */
    color: #fff;
}

.btn-all-tickets:hover {
    background-color: #172244; /* Darker blue on hover */
}