        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            /* Woven background for entire page */
            background: url('https://habi-bayan.s3.ap-south-1.amazonaws.com/HABI-BAYAN+mat+weave+(1).png') center/cover fixed;
            color: #1A1A1A;
            overflow-x: hidden;
            width: 100%;
        }

        /* Add overlay to entire page for better text readability */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(248, 228, 208, 0.1);
            z-index: -1;
        }

        /* Custom Navigation Bar */
        .custom-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(135deg, #178F65, #1CA7A5);
            z-index: 1002;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.5rem;
            transition: opacity 0.3s;
        }

        .navbar-logo:hover {
            opacity: 0.9;
            text-decoration: none;
            color: white;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #F6C441, #E34E9A);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 22px;
            color: white;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 0.9rem;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #F6C441, #E34E9A);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .user-name {
            font-weight: 500;
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .login-btn {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            cursor: pointer;
            margin-right: 2rem;
        }

        .login-btn:hover {
            background: rgba(255,255,255,0.3);
            color: white;
            text-decoration: none;
            transform: translateY(-1px);
        }

        .signup-btn {
            background: rgba(255,255,255,0.9);
            color: #178F65;
            border: 1px solid rgba(255,255,255,0.9);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            margin-right: 2rem;
        }

        .signup-btn:hover {
            background: white;
            color: #178F65;
            text-decoration: none;
            transform: translateY(-1px);
        }

        /* Main Content Wrapper */
        .main-wrapper {
            margin-top: 80px;
            padding: 20px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 40px;
        }

        .form-container {
            background: rgba(255, 255, 255, 0.98);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            backdrop-filter: blur(10px);
        }

        h2 {
            color: #178F65;
            border-bottom: 3px solid #178F65;
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
        }

        .form-section {
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .form-section h3 {
            color: #178F65;
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.3em;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        label .required {
            color: #dc3545;
            margin-left: 2px;
        }

        input[type="text"],
        input[type="number"],
        select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 14px;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        .other-input {
            margin-top: 10px;
            display: none;
        }

        .other-input input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 14px;
        }

        input[type="text"]:focus,
        input[type="number"]:focus,
        select:focus {
            outline: none;
            border-color: #178F65;
            box-shadow: 0 0 0 2px rgba(23, 143, 101, 0.1);
        }

        .checkbox-group,
        .radio-group {
            margin-left: 10px;
        }

        .checkbox-group label,
        .radio-group label {
            font-weight: normal;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        input[type="checkbox"],
        input[type="radio"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .row-three {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }

        .row-three h4 {
            color: #555;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        button {
            background: linear-gradient(135deg, #178F65, #1CA7A5);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(23, 143, 101, 0.3);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(23, 143, 101, 0.4);
        }

        button:disabled {
            background: linear-gradient(135deg, #ccc, #aaa);
            cursor: not-allowed;
            transform: none;
        }

        .optional-note {
            font-size: 0.9em;
            color: #666;
            font-style: italic;
            text-align: center;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .main-wrapper {
                padding: 15px;
                margin-top: 70px;
            }

            .form-container {
                padding: 25px 20px;
            }

            .row, .row-three {
                grid-template-columns: 1fr;
            }

            .custom-navbar {
                padding: 0 15px;
            }

            .navbar-logo {
                font-size: 1.24rem;
            }

            .logo-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .user-name {
                display: none;
            }

            h2 {
                font-size: 1.5em;
            }
        }

        @media (max-width: 600px) {
            .form-section {
                padding: 20px 15px;
            }
        }

        /* Choices.js custom styling to match form design */
        .choices {
            margin-bottom: 0;
            font-size: 14px;
            width: 100%;
        }

        .choices__inner {
            min-height: auto;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #fff;
            font-size: 14px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            line-height: 1.5;
            color: #333;
        }

        .choices__list--single {
            padding: 0;
            display: flex;
            align-items: center;
        }

        .choices__list--single .choices__item {
            color: #333;
        }

        .choices__input {
            background-color: transparent;
            font-size: 14px;
            margin-bottom: 0;
            padding: 0;
            border: none;
            min-height: 20px;
        }

        .choices__input::placeholder {
            color: #999;
            opacity: 1;
        }

        .choices[data-type*=select-one] .choices__input {
            padding: 10px 12px;
            width: 100%;
            font-size: 14px;
            box-sizing: border-box;
        }

        .choices__list--dropdown {
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-top: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
        }

        .choices__list--dropdown .choices__list {
            max-height: 300px;
            overflow-y: auto;
        }

        .choices__list--dropdown .choices__item {
            padding: 12px 16px;
            font-size: 14px;
        }

        .choices__item--selectable {
            padding: 12px 16px;
        }

        .choices__item--selectable.is-highlighted {
            background-color: #178F65;
        }

        .is-focused .choices__inner,
        .is-open .choices__inner {
            border-color: #178F65;
            box-shadow: 0 0 0 2px rgba(23, 143, 101, 0.1);
        }

        .choices__placeholder {
            color: #333;
            opacity: 1;
        }

        .choices[data-type*=select-one] .choices__inner {
                        padding: 0;
        }

        .choices[data-type*=select-one]::after {
            border-color: #333 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 5px 0 5px;
            content: '';
            height: 0;
            pointer-events: none;
            position: absolute;
            right: 15px;
            top: 50%;
            margin-top: -2.5px;
            width: 0;
        }

        .choices[data-type*=select-one].is-open::after {
            border-color: transparent transparent #333 transparent;
            border-width: 0 5px 5px 5px;
            margin-top: -7.5px;
        }

        /* Consent Section */
        .consent-section {
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
            border: 1px solid #178F65;
            border-radius: 12px;
        }

        .consent-section p {
            margin: 0 0 15px 0;
            font-size: 0.95em;
            color: #333;
            line-height: 1.7;
        }

        .consent-section label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
        }

        .consent-section input[type="checkbox"] {
            margin-top: 3px;
            flex-shrink: 0;
        }

        .consent-error {
            display: none;
            color: #dc3545;
            font-size: 0.9em;
            margin-top: 8px;
        }

        /* Remove item button styling */
        .choices__button {
            background-color: transparent;
            background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23999' fill-rule='evenodd'%3E%3Cpath d='M2.592.044l18.364 18.364-2.548 2.548L.044 2.592z'/%3E%3Cpath d='M0 18.364L18.364 0l2.548 2.548L2.548 20.912z'/%3E%3C/g%3E%3C/svg%3E");
            padding: 0;
            border: 0;
            background-size: 8px;
            width: 20px;
            height: 20px;
            opacity: 0.5;
            cursor: pointer;
            position: absolute;
            right: 35px;
            top: 50%;
            transform: translateY(-50%);
        }

        .choices__button:hover {
            opacity: 1;
        }

        /* Make sure the wrapper is full width */
        .choices__list--single .choices__item {
            display: flex;
            align-items: center;
        }

        /* Search input in dropdown - make it bigger and more visible */
        .choices__list--dropdown .choices__input {
            padding: 12px 16px !important;
            font-size: 14px;
            border: none;
            border-bottom: 1px solid #ddd;
            width: 100%;
            box-sizing: border-box;
        }

        /* Make the placeholder item darker with black text in dropdown */
        .choices__list--dropdown .choices__item--choice.choices__placeholder,
        .choices__list--dropdown .choices__item.choices__placeholder {
            color: #000 !important;
            opacity: 1 !important;
            font-weight: 400;
        }

        .choices__item--choice.choices__placeholder {
            opacity: 1;
        }

        /* Target the specific placeholder in the list */
        .choices__list[role="listbox"] .choices__item[data-value=""]:first-child {
      
            color: #000 !important;
        }

        /* New theme overrides */
        .main-wrapper {
            margin-top: 88px;
            max-width: 1080px;
        }

        .form-container {
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.09);
        }

        h2 {
            color: var(--ocean);
            border-bottom-color: var(--sunset);
        }

        .form-section h3 {
            color: var(--sunset);
        }

        input[type="text"]:focus,
        input[type="number"]:focus,
        select:focus {
            border-color: var(--sunset);
            box-shadow: 0 0 0 2px rgba(232, 98, 42, 0.12);
        }

        button {
            background: linear-gradient(135deg, var(--ocean), var(--sky));
            box-shadow: 0 8px 24px rgba(15, 52, 96, 0.25);
        }

        button:hover {
            box-shadow: 0 10px 30px rgba(15, 52, 96, 0.32);
        }

        .consent-section {
            border-color: rgba(232, 98, 42, 0.45);
            background: linear-gradient(135deg, rgba(232, 98, 42, 0.06) 0%, #ffffff 100%);
        }
    