
@import url('styles.css');


body {
    color: white;
    overflow: hidden; 
}


.container {
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}


.logo {
    top: 20px;
    max-width: 200px;
    max-height: 100px; 
}




.ticket-panel {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.panel-title {
    background-color: black;
    color: white;
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 1.8rem; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
}


.ticket-options {
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 20px;
    width: 100%; 
    flex: 0 0 auto; 
    align-items: center;
    justify-content: center;
}


.ticket-item {
    background-color: white;
    border: 3px solid black;
    padding: 15px;
    border-radius: 8px; 
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
}


.ticket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #ff9900;
    background-color: #fff9e6;
}


.ticket-item:active {
    transform: translateY(-2px);
}


.ticket-left {
    flex: 0 0 auto;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.ticket-right {
    width: 60px; 
    display: flex;
    justify-content: center;
    align-items: center;
}


.ticket-divider-vertical {
    width: 1px; 
    height: 80px;
    background-image: linear-gradient(to bottom, black 2px, transparent 2px);
    background-size: 1px 6px;
    background-repeat: repeat-y;
    margin: 0 15px;
}


.ticket-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 8px;
}


.ticket-divider {
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        black,
        black 8px,
        transparent 8px,
        transparent 16px
    );
    margin-bottom: 10px;
}


.ticket-school-vertical {
    writing-mode: vertical-rl; 
    text-orientation: upright; 
    font-size: 0.8rem;
    font-weight: bold;
    color: #666; 
    letter-spacing: 1px; 
}


.ticket-description {
    color: #333;
    font-size: 0.8rem;
    line-height: 1.4;
}


.ticket-description ul {
    list-style-type: disc; 
    margin-left: 15px;
    padding: 0;
    margin: 0 0 0 15px;
}


.ticket-description li {
    margin-bottom: 3px;
    display: list-item;
    margin-right: 0;
}




.next-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: black;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none; 
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: auto; 
    max-width: 200px;
}


.next-btn:hover {
    background-color: #333;
    transform: scale(1.05);
}


.next-btn:active {
    transform: scale(0.98);
}


.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%; 
    margin-top: 20px; 
}


@media (max-width: 768px) {
    .ticket-panel {
        padding: 30px 20px;
    }
    
    .panel-title {
        font-size: 1.4rem;
        padding: 8px 16px;
    }
    
    .next-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
