body {
    background: #f5f7fb;
}

.slct-layout {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f5f7fb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.slct-layout *,
.slct-layout *::before,
.slct-layout *::after {
    box-sizing: border-box;
}

.slct-sidebar {
    width: 33%;
    background: #e9edf3;
    padding: 20px;
    border-radius: 10px;
}

.slct-main {
    width: 67%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    min-height: 500px;
}

.slct-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.slct-chart-title {
    text-align: center;
    margin-bottom: 20px;
}

.slct-item {
    margin-bottom: 18px;
}

.slct-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.slct-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
}

textarea.slct-input {
    height: 100px;
    resize: vertical;
}

.slct-chart-wrap {
    position: relative;
    height: 450px;
}

.slct-chart {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
}

.slct-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.slct-generate,
.slct-download {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    transition: .2s;
}

.slct-generate {
    background: #2563eb;
}

.slct-download {
    background: #16a34a;
}

.slct-generate:hover,
.slct-download:hover {
    opacity: .9;
}

.slct-color-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slct-color-item {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .2s;
}

.slct-color-item:hover {
    transform: scale(1.1);
}

.slct-color-item.active {
    border-color: #111;
}

.slct-checks label {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .slct-layout {
        flex-direction: column;
    }

    .slct-sidebar,
    .slct-main {
        width: 100%;
    }

    .slct-chart-wrap {
        height: 360px;
    }
}
