.us12-listing {
    margin: 1.5rem 0;
}

.us12-listing-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.us12-listing-filter label {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.us12-listing-filter input,
.us12-listing-filter select {
    min-width: 180px;
}

.us12-listing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .us12-listing-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .us12-listing-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.us12-listing-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    background-color: #fff;
}

.us12-listing-card-title {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.us12-listing-card-fields {
    font-size: 0.9rem;
}

.us12-listing-card-field {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.us12-listing-card-field-label {
    font-weight: 600;
}

.us12-listing-table-wrapper {
    overflow-x: auto;
}

.us12-listing-table {
    width: 100%;
    border-collapse: collapse;
}

.us12-listing-table th,
.us12-listing-table td {
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.us12-listing-table th {
    background-color: #f5f5f5;
    text-align: left;
}

.us12-listing-table tr:nth-child(even) td {
    background-color: #fafafa;
}

/* Approximate Tailwind-style utilities used in markup so we don't need Tailwind */

/* Layout container */
.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Card appearance */
.bg-white {
    background-color: #ffffff;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border {
    border-width: 1px;
    border-style: solid;
    border-color: #e5e7eb;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08),
                0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.p-6 {
    padding: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-black {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-800 {
    color: #1f2933;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-400 {
    color: #9ca3af;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.text-[#0B5D8B] {
    color: #0B5D8B;
}

.bg-\[\#0B5D8B\] {
    background-color: #0B5D8B;
}

.group:hover .group-hover\:bg-\[\#E99900\] {
    background-color: #E99900;
}

.bg-\[\#F9F2EA\] {
    background-color: #F9F2EA;
}

.border-\[\#E99900\]\/30 {
    border-color: rgba(233, 153, 0, 0.3);
}

.bg-rose-100 {
    background-color: #ffe4e6;
}

.text-rose-700 {
    color: #be123c;
}

.bg-emerald-100 {
    background-color: #d1fae5;
}

.text-emerald-800 {
    color: #065f46;
}

.rounded-full {
    border-radius: 9999px;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.625;
}


