/* Lotto Generator Specific Styles */

.results-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 24px;
}

.lotto-set {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lotto-ball {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: inset -3px -3px 5px rgba(0,0,0,0.3);
}

/* Color Ranges */
.ball-yellow { background-color: #fbc400; } /* 1-10 */
.ball-blue { background-color: #69c8f2; }   /* 11-20 */
.ball-red { background-color: #ff7272; }    /* 21-30 */
.ball-gray { background-color: #aaa; }      /* 31-40 */
.ball-green { background-color: #b0d840; }  /* 41-45 */

.lotto-set .plus-sign {
    font-size: 20px;
    color: #555;
    font-weight: bold;
}

.lotto-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.lotto-controls label {
    font-weight: 600;
    color: #333;
}

.lotto-controls input[type="number"] {
    width: 60px;
    padding: 10px;
    text-align: center;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
}
