        /* body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
        } */

        .form-container {
            max-width: 550px;
            width: 98%;
            margin: 10px auto;
            padding: 16px;
            background: #ffffff;
            backdrop-filter: blur(8px);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }


        .form-title {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            margin: 10px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
        }

        .field-label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
            color: #333;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }

        .field-label img {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            cursor: pointer;
        }

        .field-label img.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .field-container {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
        }

        .custom-input,
        .custom-select,
        .custom-date,
        .custom-time {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 14px;
            background: #f5f5f5;
            color: #333;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .custom-input:focus,
        .custom-select:focus,
        .custom-date:focus,
        .custom-time:focus {
            border-color: #b91524;
            box-shadow: 0 0 0 3px rgba(89, 13, 34, 0.2);
            outline: none;
        }

        .custom-select {
            height: 40px;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 12px;
        }

        .field-mini {
            gap: 6px;
            display: flex;
            align-items: center;
        }

        .field-mini input,
        .field-mini select {
            flex: 1;
        }

        .icon-btn {
            background: #b91524;
            border: none;
            padding: 9px 9px 4px;
            border-radius: 8px;
            cursor: pointer;
            margin-left: 8px;
            transition: background 0.2s ease;
        }

        .icon-btn:hover {
            background: #9c0a11;
        }

        .icon-btn img {
            width: 20px;
            height: 20px;
        }

        .submit-btn {
            background: #b91524;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
            width: 100%;
            margin-top: 12px;
        }

        .submit-btn:hover {
            background: #9c0a11;
            transform: translateY(-2px);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1100;
        }

        .modal-content {
            background: #ffffff;
            backdrop-filter: blur(8px);
            padding: 16px;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .modal.show .modal-content {
          background: #333;
            transform: translateY(0);
            opacity: 1;
        }

        .modal .modal-content {
            transform: translateY(-20px);
            opacity: 0;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ccc;
            padding-bottom: 8px;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
        }

        .modal-body {
            padding: 12px 0;
        }

        .modal-footer {
            border-top: 1px solid #ccc;
            padding-top: 8px;
            text-align: right;
        }



        .airport-btn:hover,
        .custom-btn:hover {
            background: #b91524;
            transform: translateY(-1px);
            
        }

        .suggestion-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: calc(100% - 40px);
            background: #f5f5f5;
            border: 1px solid #ccc;
            border-radius: 8px;
            max-height: 150px;
            overflow-y: auto;
            z-index: 1200;
            display: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }

        .suggestion-item {
            padding: 8px;
            cursor: pointer;
            color: #333;
            transition: background 0.2s ease;
        }

        .suggestion-item:hover {
            background: #b91524;
            color: #ffffff;
        }

        .loading-div {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1200;
        }

        .loader {
            border: 6px solid #f5f5f5;
            border-top: 6px solid #b91524;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .error-message {
            color: #b91524;
            font-size: 12px;
            display: none;
            margin-top: 4px;
        }

        .via-field {
            display: flex;
            flex-direction: column;
            margin-bottom: 10px;
            position: relative;
        }

        .via-field .field-container {
            display: flex;
            align-items: center;
        }

        .via-field input {
            flex: 1;
            margin-right: 8px;
        }

        .via-field .suggestion-list {
            width: calc(100% - 48px);
        }

        .custom-date,
        .custom-time {
            width: 100%;
        }

        .remove-field {
            background: #b91524;
            color: #ffffff;
            border: none;
            padding: 8px 10px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

                .item-card-body{
          background: #444;
          padding: 10px;
          border-radius: 9px;
        }
        .close-btn{
          background: #333;
          border: none;
        }
        .close-btn img{
         width: 24px;
         height: 24px;
        }
        .airport-btn{
          margin: 3px;
        }

        .airport-btn,
        .custom-btn {
            background: #333;
            border: 1px solid #515151;
            padding: 8px;
            border-radius: 8px;
            color: #ffffff;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 14px;
        }

        .remove-field:hover {
            background: #b91524;
        }
        .remove-field {
            background: #590d22;
            color: #ffffff;
            border: none;
            padding: 8px 10px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
        }

        .holdable-data {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-start;
            margin-top: 12px;
        }

        .holdable-item {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 6px;
            background: #f5f5f5;
        }

        .holdable-item input {
            border: none;
            background: none;
            padding: 6px;
            color: #333;
            font-size: 14px;
        }

                .delete-btn {
            background: #b91524;
            border-radius: 4px;
            padding: 4px;
            border: none;
            cursor: pointer;
        }

        .delete-btn img {
            width: 16px;
            height: 16px;
        }

        .card {
            border-radius: 8px;
            margin-bottom: 8px;
            
        }
        
        .luggage-item{
          background: #222;
          margin: 3px;
        }
        .card-header {
            background: #333;
            border-radius: 8px 8px 0 0;
        }

        .luggage-headings {
            margin: 0;
        }

        .card-body {
            padding: 8px;
        }

        .collapse {
            display: none;
        }

        .collapse.show {
            display: block;
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 12px;
            }

            .form-title {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
            }
        }


