/**
 * Sale Tickets Generator - Check-in Page Styles
 */

.stg-checkin-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stg-ticket-info {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.stg-ticket-info h2 {
    margin: 0 0 16px;
    color: #1a1a1a;
}

.stg-ticket-info p {
    margin: 8px 0;
    color: #444;
}

.stg-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.stg-status-valid {
    background: #d4edda;
    color: #155724;
}

.stg-status-used {
    background: #fff3cd;
    color: #856404;
}

.stg-status-success {
    background: #d4edda;
    color: #155724;
}

.stg-status-error {
    background: #f8d7da;
    color: #721c24;
}

.stg-status-icon {
    font-size: 24px;
}

.stg-checkin-form {
    margin-top: 20px;
}

.stg-checkin-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.stg-checkin-form input {
    width: 100%;
    padding: 12px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.stg-checkin-form input:focus {
    outline: none;
    border-color: #007cba;
}

.stg-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #007cba;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.stg-btn:hover {
    background: #005a87;
}

.stg-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.stg-checkin-error {
    text-align: center;
    padding: 40px;
    color: #721c24;
    background: #f8d7da;
    border-radius: 8px;
}

.stg-session-timer {
    text-align: center;
    padding: 8px 16px;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}
