.sz-container {
    
}

.sz-results {
    background-color: #eef2ff;
    padding: 10px;
    margin-bottom: 0px;
	color:#000;
	border-radius:7px 7px 0 0;
    display: flex;
    flex-wrap: nowrap;
	border-bottom:1px solid #c7d2fe;
}

/* Remove border for the last item in the row */
.sz-result-item:last-child {
    border-right: none;
}

.result-value {
	font-size:1.5rem;
	font-weight:500;
}

.sz-result-item {
    display: block;
    margin: 5px 0;
    flex: 1;
    padding: 10px;
    text-align: center;
    border-right: 1px solid #c7d2fe;
    box-sizing: border-box;
}

.sz-input {
    width: 100%;
    height: 200px;
    padding: 25px;
    box-sizing: border-box;
	border-radius:0 0 7px 7px;
    margin-bottom: 10px;
    overflow: hidden; /* Hide scrollbar */
    resize: none;     /* Prevent manual resizing */
}

.sz-buttons {
    display: flex;
    gap: 10px;
}

.sz-button {
    padding: 10px 15px;
    cursor: pointer;
    color: #4338ca;
    border: none;
	background-color:#eef2ff;
	border-radius:3px;
}

/* Styles for screens under 800px */
@media (max-width: 900px) {
    .sz-results {
        flex-wrap: wrap;
    }
    .sz-result-item {
        /* Each div takes about one third of the container's width */
        flex: 0 0 calc(33.33% - 1px);
    }
    /* Remove the right border for every third item in a row */
    .sz-result-item:nth-child(3n) {
        border-right: none;
    }
}