/* Style the search box wrapper */
        .dt-search {
            display: flex;
            align-items: center;
            gap: 8px;
            /* spacing between label and input */
            margin-bottom: 15px;
        }

        /* Style the label */
        .dt-search label {
            font-weight: 600;
            color: #ea5b0c;
            font-size: 20px;
        }

        /* Style the search input box */
        .dt-search input[type="search"] {
            border: 2px solid #ea5b0c;
            border-radius: 25px;
            /* circular edges */
            padding: 8px 15px;
            outline: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        /* On focus effect */
        .dt-search input[type="search"]:focus {
            box-shadow: 0 0 6px rgba(234, 91, 12, 0.6);
            border-color: #ea5b0c;
        }