/* General container styling */
.ticket-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.ticket-container {
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    padding: 20px;
}

/* Ticket card styling */
.ticket-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Typography */
.ticket-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.ticket-card p strong {
    color: #000;
}

/* Status colors */
.valid-status {
    color: #27ae60;
    font-weight: bold;
}

.invalid-status {
    color: #e74c3c;
    font-weight: bold;
}

.failed-status {
    color: #d35400;
    font-weight: bold;
}

/* Button styling */
.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #388e3c;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.random:hover a {
    color:#fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ticket-container {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .ticket-card {
        padding: 10px;
    }

    .download-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}
