input:disabled {
    background: rgba(44, 51, 56, 0.1);
}
.nsd-chat-form {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}
.nsd-section {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.nsd-section h2 {
    font-size: 1.2rem;
}
.nsd-field {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}
.nsd-field label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.nsd-field input[type="text"],
.nsd-field input[type="number"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.nsd-button-submission-group {
    display: flex;
    gap: 1rem;
}
.nsd-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.nsd-section-head img {
    width: 35px;
    height: auto;
}
.nsd-section-head .nsd-toggle-button {
    margin-left: auto;
}
.nsd-toggle-button {
    padding: 8px 20px;
    border-radius: 10px;
    border: 0;
    background-color: rgb(255, 56, 86);
    letter-spacing: 1.5px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: rgb(201, 46, 70) 0px 7px 0px 0px;
    color: hsl(0, 0%, 100%);
    cursor: pointer;
}

.nsd-toggle-button:active {
    background-color: rgb(255, 56, 86);
    box-shadow: rgb(201, 46, 70) 0px 0px 0px 0px;
    transform: translateY(5px);
    transition: 200ms;
}
.nsd-toggle-button.active {
    background-color: rgb(40, 167, 69);
    box-shadow: rgb(30, 126, 52) 0px 10px 0px 0px;
}
.nsd-toggle-button.active:hover {
    box-shadow: rgb(30, 126, 52) 0px 7px 0px 0px;
}
.nsd-toggle-button.active:active {
    background-color: rgb(40, 167, 69);
    box-shadow: rgb(30, 126, 52) 0px 0px 0px 0px;
}
@media (max-width: 600px) {
    .nsd-chat-form {
        grid-template-columns: 1fr;
    }
}
