.offer-card {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left-color: #3b82f6;
}
.hospital-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.new-badge {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}
.no-results-message {
    grid-column: 1 / -1;
    width: 100%;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}
.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
}
.modal-body {
    margin-bottom: 1.5rem;
}
.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}
.badge-blue {
    background-color: #ebf8ff;
    color: #3182ce;
}
.badge-green {
    background-color: #f0fff4;
    color: #38a169;
}
.badge-purple {
    background-color: #faf5ff;
    color: #805ad5;
}
.detail-item {
    margin-bottom: 1rem;
}
.detail-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.25rem;
}
.detail-value {
    color: #2d3748;
}

input[type="range"] {
    @apply w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer;
  }

  input[type="range"]::-webkit-slider-thumb {
    @apply appearance-none w-4 h-4 rounded-full bg-blue-500 border-none;
  }

  input[type="range"]::-moz-range-thumb {
    @apply w-4 h-4 rounded-full bg-blue-500 border-none;
  }

  input[type="range"]::-ms-thumb {
    @apply w-4 h-4 rounded-full bg-blue-500 border-none;
  }