body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 320px;
}

.heading1 {
    margin: 0 0 10px 0;
    color: #0d47a1;
}

#balance-display {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 22px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.muhehe {
    font-weight: bold;
    text-align: left;
    color: #424242;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-color: #0d47a1;
}

.buy-ticket {
    padding: 12px;
    background-color: #0d47a1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-ticket:hover {
    background-color: #1565c0;
}

span {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #333;
    word-wrap: break-word;
}