.xsmb-check-ticket-wrapper {
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.xsmb-check-header h3 {
    text-align: center;
    color: #d32f2f;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.xsmb-check-form .form-group {
    margin-bottom: 15px;
}

.xsmb-check-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.xsmb-check-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.xsmb-check-form button {
    width: 100%;
    padding: 12px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.xsmb-check-form button:hover {
    background: #b71c1c;
}

.xsmb-check-form button:disabled {
    background: #e57373;
    cursor: not-allowed;
}

.xsmb-check-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.xsmb-check-result.won {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.xsmb-check-result.lost {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

.xsmb-check-result h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.xsmb-check-result .msg {
    margin: 0;
    font-size: 15px;
}

.xsmb-check-result .error {
    color: #d32f2f;
}