body {
    background: url("../images/background/room.png") center/cover no-repeat fixed;
}

.polisher-panel {
    gap: 18px;
}

.polisher-form {
    gap: 18px;
}

.polisher-block {
    display: grid;
    gap: 16px;
    padding: 18px;
    background: rgba(6, 7, 9, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
}

.polisher-block-header {
    display: grid;
    gap: 6px;
}

.polisher-block-header h3 {
    margin: 0;
    font-size: 16px;
    color: #f8fafc;
}

.polisher-block-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.polisher-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.polisher-grid-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.polisher-field {
    display: grid;
    gap: 8px;
}

.polisher-field span {
    font-size: 12px;
    color: #cbd5e1;
}

.polisher-field-full {
    grid-column: 1 / -1;
}

.secondary-btn {
    background: rgba(148, 163, 184, 0.14) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(148, 163, 184, 0.35) !important;
}

.helper-btn {
    background: rgba(250, 204, 21, 0.12) !important;
    color: #fde68a !important;
    border: 1px solid rgba(250, 204, 21, 0.35) !important;
}

.polisher-output {
    padding: 14px 16px;
    background: rgba(9, 12, 20, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 12px;
    white-space: pre-wrap;
    min-height: 96px;
}

.polisher-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .polisher-grid-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .polisher-grid,
    .polisher-grid-options {
        grid-template-columns: 1fr;
    }

    .polisher-block {
        padding: 16px;
    }

    .polisher-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
