/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sliders-section {
    margin-bottom: 20px;
}

.sliders-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.sliders-section input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}

#dimension-display,
#options-display,
#scale-display {
    font-size: 14px;
    margin-bottom: 20px;
}

.output-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align layouts to the start */
}

.layout-row {
    display: flex;
    margin-bottom: 20px;
    align-items: center; /* Center the items vertically */
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-right: 10px;
    background-color: #ddd;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 12px;
    text-align: center;
}
