.snc-create-booking-form {
    max-width: 1200px;
    margin: 0 auto;
}

.snc-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

.snc-section-header {
    background: #1e40af;
    color: #fff;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
}

.snc-section-body {
    padding: 20px;
}

.snc-row {
    display: grid;
    gap: 20px;
    margin-bottom: 16px;
}

.snc-col-2 { grid-template-columns: repeat(2,1fr); }
.snc-col-3 { grid-template-columns: repeat(3,1fr); }
.snc-col-4 { grid-template-columns: repeat(4,1fr); }

.snc-section input,
.snc-section select,
.snc-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd8e3;
    border-radius: 4px;
    font-size: 13px;
}

.snc-remarks {
    min-height: 42px;
    resize: none;
}

.snc-dim-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 10px;
}

.snc-dim-head {
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
}

.snc-dim-grid input {
    text-align: center;
}

.snc-save-btn {
    margin-top: 20px;
    background: #1e40af;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

#snc-add-item {
    margin-bottom: 0px;
}

.snc-item-row {
    margin-bottom: 6px;
}

.snc-total-row {
    margin-top: 8px !important;
}

.snc-save-wrap {
    margin-top: 12px;
}

.snc-save-btn {
    min-width: 180px;
}


@media(max-width:768px){
    .snc-col-2,.snc-col-3,.snc-col-4,.snc-dim-grid{
        grid-template-columns:1fr;
    }
}

