.form-container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 120px;
}
.header-section {
    background: #6C9D16;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.header-section h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}
.company-info {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}
.section-title {
    background: #f0f0f0;
    padding: 12px 20px;
    margin: 30px -20px 20px -20px;
    font-weight: bold;
    color: #6C9D16;
    border-left: 4px solid #6C9D16;
}
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-control {
    height: 30px !important;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
}
.form-control:focus, .form-select:focus {
    border-color: #4a7c59;
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.15);
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}
.form-check {
    margin-bottom: 10px;
}

.form-check-input {
    width: 18px !important;
    height: 18px;
}

.form-check-input:checked {
    background-color: #4a7c59;
    border-color: #4a7c59;
}
.dimension-input {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dimension-input input {
    width: 100px;
}
.submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}
.btn-submit {
    background: #6C9D16;
    color: white;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-submit:hover {
    background: white;
    color: #6C9D16;
    transition: all 0.3s;
    border: 1px solid #6C9D16;
}
.sub-option {
    margin-left: 30px;
    margin-top: 10px;
}
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    height: 30px;
}
@media print {
    .form-container {
        box-shadow: none;
    }
}