/* Fix for Business Page Tabs */
.business-tabs .tab-link {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #f5f5f5;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    color: #666;
    font-weight: bold;
    border: 1px solid #ddd;
    border-bottom: none;
    position: relative;
    transition: all 0.3s ease;
}

.business-tabs .tab-link.active {
    background-color: #fff;
    color: #3f51b5;
    border-bottom: 2px solid #3f51b5;
}

.business-tabs .tab-content {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #fff;
}

.business-tabs .tab-pane {
    display: none;
}

.business-tabs .tab-pane.active {
    display: block;
}

/* Review styling */
#write-review {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Highlight effect for the review form when clicked */
#write-review.highlight {
    background-color: #e8eaf6; /* Light blue */
    border: 2px solid #3f51b5; /* Blue border */
    box-shadow: 0 0 10px rgba(63, 81, 181, 0.3); /* Blue glow */
}

/* Gallery styling */
#gallery .business-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

#gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#gallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#gallery .gallery-item:hover img {
    transform: scale(1.1);
}

#gallery .no-gallery {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Comments section within reviews tab */
#comments {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

#comments .comment {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#comments .comment-form {
    margin-top: 30px;
}

/* Active tab highlight removed to fix red line issue */
/* .tab-link.active::after rule removed completely */
