 <!-- Using Tailwind CSS for modern, mobile-first styling (in addition to custom CSS for the search tool) -->
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
    
    <style>
        /* BASE STYLES TO MIMIC DPSCS LOOK AND FEEL */
        :root {
            --dpscs-blue: #0056b3;
            --dpscs-dark: #1a202c;
            --dpscs-light: #f7fafc;
        }
        body {
            font-family: 'Inter', Arial, sans-serif;
            background-color: var(--dpscs-light);
            color: var(--dpscs-dark);
        }
        .main-header {
            background-color: var(--dpscs-blue);
            color: white;
            padding: 1rem 0;
            text-align: center;
            font-weight: 700;
        }
        .main-content-area {
            max-width: 1200px;
        }
        .sidebar {
            background-color: #f1f5f9;
            border-right: 1px solid #e2e8f0;
        }
        .sidebar-item {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 600;
            color: #4a5568;
            cursor: pointer;
        }
        .sidebar-item:hover {
            background-color: #e2e8f0;
            color: var(--dpscs-blue);
        }
        .sidebar-item.active {
            background-color: var(--dpscs-blue);
            color: white;
            border-left: 5px solid #f6ad55; /* Accent color */
        }
        .breadcrumb a {
            color: var(--dpscs-blue);
            text-decoration: none;
        }
        
        /* FEE TABLE STYLES */
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
        }
        .fee-table th, .fee-table td {
            border: 1px solid #e2e8f0;
            padding: 10px;
            text-align: left;
        }
        .fee-table th {
            background-color: #f1f5f9;
            font-weight: 700;
            color: #2d3748;
        }
        .fee-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .fee-table td:nth-child(2) {
            font-weight: 600;
            color: #007bff;
        }

        /* SEARCH TOOL STYLES */
        .search-title-custom {
            color: var(--dpscs-dark);
            border-bottom: 3px solid #981e32; 
            padding-bottom: 12px;
            margin-bottom: 30px;
            font-size: 1.8em;
            font-weight: 700;
            text-align: center;
        }
        .provider-search-container {
            border: 1px solid #d1d9e6;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        .input-group {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-end;
        }
        .form-field {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .search-button {
            padding: 10px 20px;
            background-color: #981e32;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.2s, transform 0.1s;
            height: 42px; 
            white-space: nowrap;
        }
            .search-button:hover {
                background-color: #5a5a5a;
                transform: translateY(-1px);
            }
        .provider-list {
            list-style: none;
            padding: 0;
        }
        .provider-item {
            border: 1px solid #e2e8f0;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            background-color: #ffffff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        .provider-item strong {
            color: #981e32;
            font-size: 1.1em;
            display: block;
            margin-bottom: 5px;
        }
        .provider-actions {
            margin-top: 10px;
            display: flex;
            justify-content: flex-end;
        }
        .action-button {
            padding: 8px 15px;
            background-color: #5a5a5a; 
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9em;
            font-weight: 600;
            transition: background-color 0.2s;
        }
        .action-button:hover {
            background-color: #5a5a5a;
        }
        .no-results {
            color: #e53e3e;
            font-weight: bold;
        }
        
        /* Modal Styles */
        .map-choice-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .modal-content {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            max-width: 90%;
            width: 350px;
            text-align: center;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
            }
            .input-group {
                flex-direction: column;
                align-items: stretch;
            }
            .search-button {
                width: 100%;
                height: auto;
                margin-top: 10px;
            }
            .fee-table, .fee-table th, .fee-table td {
                display: block;
                width: 100%;
            }
            .fee-table th {
                text-align: center;
            }
            .fee-table td {
                text-align: right;
                position: relative;
                padding-left: 50%;
                text-align: right;
            }
            .fee-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 10px;
                width: calc(50% - 20px);
                font-weight: 600;
                color: #2d3748;
                text-align: left;
            }
        }
    </style>
