/* Plugin Styles for Generator številk za Loto */

.generator-stevilk-loto-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.left-column, .right-column {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

.left-column {
    background:#eef2ff;
	border-radius:10px 0 0 10px;
	color:#000000;
}

.right-column {
    background:#ffffff;
	border-radius:0 10px 10px 0;
	color:#000000;
}

.right-column > div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#results-container {
    justify-content: center; 
    display: flex;
}

.number-box {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
    line-height: 40px;
    text-align: center;
    border-radius: 40px;
    color: white;
    font-weight: bold;
}
.red-background {
    background-color: #4f46e5;
	color:#eef2ff;
}
.yellow-background {
    background-color: #eef2ff;
    color: #4338ca;
}

.btn-generate {
    padding: 10px 20px;
    background-color: #4f46e5;
    color: #eef2ff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#btn-generate {
    justify-content: center; 
    display: flex;
	padding:20px 0 0;
}

.col-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

.first-col, .second-col {
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
}

.option-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.input-group label {
    margin-bottom: 5px;
}

@media (max-width: 640px) {
    .left-column, .right-column {
        width: 100%;
    }

.left-column {
	border-radius:10px 10px 0 0;
}

.right-column {
	border-radius:0 0 10px 10px;
}
}
@media (max-width: 440px) {
    .col-wrap {
        flex-wrap: wrap;
    }

    .first-col, .second-col {
        width: 100%;
    }
}