
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    overflow: hidden;
} */

#amenities-container {
    display: flex;
    height: 80vh;
    backdrop-filter: blur(10px);
}

#amenities-map {
    flex: 2;
    position: relative;
    /* border-radius: 0 20px 20px 0; */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

#amenities-sidebar {
    min-width: 600px;
    max-width: 600px;
    background: #fff;
    backdrop-filter: blur(20px);
    /* border-radius: 20px 0 0 20px; */
    padding: 30px 20px;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    position: relative;
}
.places-list-div{
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}
.info-text{
    font-size: 14px;
}
#amenities-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b8282, #202020);
    border-radius: 20px 0 0 0;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    margin-bottom: 8px;
    color: #202020;
}

.header p {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

#amenity-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #202020;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #202020;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

#amenity-select:focus {
    outline: none;
    border-color: #202020;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-count {
    font-size: 14px;
    color: #202020;
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 40px 20px;
    color: #202020;
}

.loading i {
    font-size: 24px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
    color: #202020;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.place-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.place-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #202020;
}

.place-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.05);
}

.place-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.place-info {
    padding: 10px 15px;
}

.place-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.place-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.stars {
    color: #fbbf24;
    margin-right: 8px;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.place-details {
    space-y: 8px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-icon {
    width: 16px;
    margin-right: 10px;
    margin-top: 2px;
    color: #667eea;
    flex-shrink: 0;
}

.detail-text {
    color: #64748b;
    line-height: 1.4;
    flex: 1;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.no-results i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
}

.no-results p {
    font-size: 14px;
    line-height: 1.5;
}

/* Custom scrollbar */
#amenities-sidebar::-webkit-scrollbar {
    width: 6px;
}

#amenities-sidebar::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 10px;
}

#amenities-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b8282, #202020);
    border-radius: 10px;
}

#amenities-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b8282, #202020);
}
@media only screen and (max-width: 600px) {
    .places-list-div{
            display: grid;
            grid-template-columns: auto;
            gap: 10px;
        }
        #amenities-sidebar {
    min-width: 100%;
    max-width: 100%;
}
}
