.search-results {
    max-width: 1440px;
    margin: 20px auto;
    padding: 20px 0;
    background: #fff;
    border-radius: 8px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}
h1 {
    font-size: 24px;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.tab-button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tab-button.active {
    background: #0056b3;
}

.tab-button:hover {
    background: #0056b3;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Card Styles */
.card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.card a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #0056b3;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.halls-card-stars {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    color: #ddd;
    unicode-bidi: bidi-override;
}

.halls-card-stars .stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    width: 0; /* Dynamically updated via JS */
}

.halls-card-stars .stars-hover {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.halls-card-stars::before {
    content: '★★★★★';
    display: block;
    color: inherit;
}

.halls-card-stars .stars-inner::before,
.halls-card-stars .stars-hover::before {
    content: '★★★★★';
    display: block;
}
.not-clickable {
    pointer-events: none; /* Disable pointer events (click, hover) */
    opacity: 1; /* Optional: Dim the element to indicate it's inactive */
}

.search-results .specialist-card-row {
     flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .search-results .specialist-card-row__item {
        width: 20% !important;
    }
}


@media (max-width: 767px) {
    .search-results .specialist-card-row__item {
        width: 30.333% !important;
    }
}

@media (max-width: 575px) {
    .search-results .specialist-card-row__item {
        width: 45% !important;
    }
}
