/* Global layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center;
    padding: 30px;
    margin: 0;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Form layout */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Inputs */
input[type="number"] {
    width: 80px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

/* Button */


button:hover {
    background-color: #007bb5;
}

/* Loto result display */
.loto-results {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
      display: block;

  
}

.ball {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    margin: 5px;
}

.blue {
    background-color: #781ea5;
}

.yellow {
    background-color: #fe3c69;
    color: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    
}

.yellow span{
    display: block;
    transform: rotate(45deg);
}

.label {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
    color: #333;
}
