
        :root {
            --primary-color: #6b7fd7;
            --primary-light: #8b9fe8;
            --primary-dark: #5568c4;
            --secondary-color: #5dade2;
            --success-color: #52c41a;
            --warning-color: #faad14;
            --danger-color: #ff7875;
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #e8e8e8;
            --gray-300: #d9d9d9;
            --gray-400: #bfbfbf;
            --gray-600: #595959;
            --gray-700: #434343;
            --gray-800: #262626;
        }

        /* Main Form Styling */
        .waybill-form-container {
            background: linear-gradient(135deg, #f8f9ff 0%, #fafbff 100%);
            padding: 30px 0;
            min-height: 100vh;
        }

        .waybill-form-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(107, 127, 215, 0.08);
            overflow: visible;
            background: white;
        }

        .waybill-form-card .card-header {
            background: linear-gradient(135deg, #6b7fd7 0%, #8b9fe8 100%);
            color: white;
            border: none;
            padding: 24px 32px;
            border-radius: 16px 16px 0 0 !important;
        }

        .waybill-form-card .card-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }

        .waybill-form-card .card-body {
            padding: 32px;
            background: white;
        }

        /* Section Cards */
        .section-card {
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            margin-bottom: 24px;
            overflow: visible;
            transition: all 0.3s ease;
            background: white;
        }

        .section-card:hover {
            box-shadow: 0 4px 16px rgba(107, 127, 215, 0.06);
            border-color: var(--gray-300);
        }

        .section-card .card-header {
            background: #fafbff;
            border-bottom: 2px solid var(--primary-light);
            padding: 18px 24px;
            border-radius: 11px 11px 0 0;
        }

        .section-card .card-header h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-700);
            letter-spacing: 0.1px;
        }

        .section-card .card-header h4 i {
            margin-left: 8px;
            color: var(--primary-color);
            font-size: 14px;
        }

        .section-card .card-body {
            padding: 24px;
            background: white;
        }

        /* Form Labels */
        .form-label {
            font-weight: 500;
            color: var(--gray-600);
            margin-bottom: 8px;
            font-size: 13px;
            letter-spacing: 0.1px;
        }

        /* Form Controls */
        .form-control, .form-select, select {
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            padding: 11px 14px;
            transition: all 0.3s ease;
            font-size: 14px;
            background: white;
            color: var(--gray-700);
        }

        .form-control:focus, .form-select:focus, select:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.08);
            outline: none;
            background: #fafbff;
        }

        .form-control.is-valid {
            border-color: #95de64 !important;
        }

        .form-control.is-invalid {
            border-color: #ffa39e !important;
        }

        /* Bootstrap Select Override */
        .bootstrap-select {
            width: 100% !important;
            z-index: 1060 !important;
        }

        .bootstrap-select.open {
            z-index: 1061 !important;
        }

        .bootstrap-select .dropdown-toggle:focus {
            outline: none !important;
        }

        .bootstrap-select > .dropdown-toggle {
            border: 1px solid var(--gray-300) !important;
            border-radius: 8px !important;
            padding: 11px 14px !important;
            font-size: 14px !important;
            background: white !important;
            color: var(--gray-700) !important;
            min-height: 46px !important;
            height: auto !important;
            width: 100% !important;
            line-height: 1.5 !important;
            font-weight: 400 !important;
        }

        .bootstrap-select > .dropdown-toggle .filter-option {
            color: #000 !important;
            font-size: 15px !important;
            font-weight: normal !important;
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .bootstrap-select > .dropdown-toggle .filter-option-inner {
            color: #000 !important;
            display: block !important;
            opacity: 1 !important;
        }

        .bootstrap-select > .dropdown-toggle .filter-option-inner-inner {
            color: #000 !important;
            display: inline-block !important;
            opacity: 1 !important;
            visibility: visible !important;
            font-size: 15px !important;
        }

        /* Fix for title attribute display */
        .bootstrap-select button[data-id] {
            text-align: right !important;
            direction: rtl !important;
        }

        /* Placeholder text */
        .bootstrap-select > .dropdown-toggle .bs-placeholder,
        .bootstrap-select > .dropdown-toggle .bs-placeholder .filter-option-inner-inner {
            color: #6c757d !important;
            opacity: 1 !important;
        }

        .bootstrap-select > .dropdown-toggle:focus,
        .bootstrap-select > .dropdown-toggle:hover {
            border-color: var(--primary-light) !important;
            box-shadow: 0 0 0 3px rgba(107, 127, 215, 0.08) !important;
            outline: none !important;
            background: #fafbff !important;
        }

        .bootstrap-select .dropdown-menu {
            border: 1px solid var(--gray-200) !important;
            border-radius: 8px !important;
            box-shadow: 0 4px 16px rgba(107, 127, 215, 0.1) !important;
            margin-top: 4px !important;
            z-index: 1062 !important;
            max-height: none !important;
            overflow-y: auto !important;
        }

        .bootstrap-select .dropdown-menu li a {
            padding: 10px 14px !important;
            transition: all 0.2s ease !important;
            color: var(--gray-700) !important;
            font-weight: 400 !important;
            border-radius: 4px !important;
            margin: 2px 6px !important;
        }

        .bootstrap-select .dropdown-menu li a:hover {
            background: #e8ecff !important;
            color: var(--primary-dark) !important;
        }

        .bootstrap-select .dropdown-menu li.selected a {
            background: var(--primary-light) !important;
            color: white !important;
        }

        .bootstrap-select .dropdown-menu li.active a {
            background: #f0f3ff !important;
            color: var(--primary-dark) !important;
        }

        .bootstrap-select .bs-searchbox .form-control {
            border: 1px solid var(--gray-300) !important;
            border-radius: 6px !important;
            padding: 8px 12px !important;
            margin: 8px !important;
        }

        .bootstrap-select .bs-searchbox .form-control:focus {
            border-color: var(--primary-light) !important;
            box-shadow: 0 0 0 2px rgba(107, 127, 215, 0.08) !important;
        }

        /* Fix for dropdown position */
        .bootstrap-select.show .dropdown-menu {
            display: block !important;
        }

        /* Ensure parent containers don't clip dropdown */
        .card-body {
            overflow: visible !important;
        }

        .row {
            overflow: visible !important;
        }

        /* Alert Boxes */
        .alert-notice {
            background: #fff7e6;
            color: #d46b08;
            border: 1px solid #ffd591;
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .alert-notice h6 {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
            font-weight: 500;
            color: #ad6800;
        }

        .alert-notice i {
            margin-left: 6px;
            color: #fa8c16;
        }

        .alert-info {
            background: #e6f7ff;
            color: #0958d9;
            border: 1px solid #91d5ff;
            border-radius: 8px;
            padding: 14px 18px;
            margin-top: 10px;
        }

        .alert-info h6 {
            margin: 0;
            font-size: 13px;
            line-height: 1.5;
            font-weight: 400;
            color: #096dd9;
        }

        .alert-info i {
            margin-left: 6px;
            color: #1890ff;
        }

        /* Pricing Grid */
        .pricing-grid {
            background: #f9f9ff;
            border-radius: 10px;
            padding: 22px;
            margin-top: 20px;
            border: 1px solid #e8e8ff;
        }

        .pricing-grid .form-label {
            color: var(--gray-600);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-grid .form-control {
            background: white;
            font-weight: 600;
            color: var(--primary-dark);
            border: 1px solid var(--gray-300);
        }

        /* Image Upload Section */
        .ss-image-upload-container {
            margin: 0 auto;
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: center;
            overflow: auto;
            border-radius: 10px;
            padding: 20px;
            background: #fafafa;
            border: 1px dashed var(--gray-400);
        }

        #fileUpload {
            display: none;
        }

        .ss-image-input-box {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            padding-top: 16px;
        }

        .ss-image-input-box label {
            font-size: 14px;
            color: white;
            font-weight: 500;
            border-radius: 8px;
            padding: 12px 32px;
            background: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(107, 127, 215, 0.25);
        }

        .ss-image-input-box label:hover {
            background: var(--primary-light);
            box-shadow: 0 4px 12px rgba(107, 127, 215, 0.35);
        }

        .image-preview {
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding: 15px;
            box-sizing: border-box;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            text-align: center;
            flex-direction: row;
            height: 0;
        }

        .image-preview img {
            width: 200px;
            height: 200px;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .image-preview.animate-image {
            opacity: 1;
            height: 220px;
        }

        .image-preview.animate-image a {
            position: absolute;
            top: 55%;
        }

        /* Submit Button */
        .btn-submit,
        .btn.btn-submit {
            background: var(--primary-color) !important;
            border: none !important;
            border-radius: 8px !important;
            padding: 12px 32px !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            color: white !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 2px 8px rgba(107, 127, 215, 0.25) !important;
            cursor: pointer;
            line-height: 1.5;
        }

        .btn-submit:hover:not(:disabled),
        .btn.btn-submit:hover:not(:disabled) {
            background: var(--primary-light) !important;
            box-shadow: 0 4px 12px rgba(107, 127, 215, 0.35) !important;
            color: white !important;
        }

        .btn-submit:disabled,
        .btn.btn-submit:disabled {
            background: var(--gray-300) !important;
            cursor: not-allowed !important;
            box-shadow: none !important;
            opacity: 0.6;
        }

        .btn-submit i {
            margin-left: 6px;
        }

        /* Checkbox Styling */
        .custom-checkbox-container {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            padding: 14px 18px;
            transition: all 0.3s ease;
        }

        .custom-checkbox-container:hover {
            border-color: var(--gray-400);
            background: #fafbff;
        }

        .custom-checkbox-container input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: var(--primary-color);
        }

        .custom-checkbox-container label {
            margin: 0;
            cursor: pointer;
            font-weight: 400;
            color: var(--gray-600);
            font-size: 14px;
        }

        .custom-checkbox-container a {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
        }

        .custom-checkbox-container a:hover {
            color: var(--primary-light);
        }

        .custom-checkbox-container i {
            margin-left: 6px;
            color: var(--primary-color);
            font-size: 13px;
        }

        /* Company Logo */
        .company-logo-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(107, 127, 215, 0.06);
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid var(--gray-200);
        }

        /* Small text / validation messages */
        .text-danger {
            color: var(--danger-color) !important;
            font-size: 12px;
            font-weight: 400;
            margin-top: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .waybill-form-card .card-header h2 {
                font-size: 22px;
            }

            .section-card .card-header h4 {
                font-size: 18px;
            }
        }
 