body {
    background-color: #f8f9fa;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    /* background-color: #1e3a5f; */
    color: white;
    padding: 15px;
    overflow-y: auto;
    z-index: 1000;
    --tw-bg-opacity: 1;
    background-color: #e9ecef;
}
.sidebar-logo {
    /* padding: 20px; */
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    color: #000;
    /* background-color: #adb5bd; */
    font-size: 26px;
}
.logo-icon img {
    max-width: 150px;
}
.sidebar-logo .logo-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
}
.sidebar-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li {
    margin: 0;
}
.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 5px;
}
.sidebar-menu a:hover {
    background-color: rgb(0 0 0 / 6%);
    color: #000000;
}
.sidebar-menu a.active {
    background-color: #0498d4;
    color: white;
}
.sidebar-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}
.main-content {
    margin-left: 300px;
    padding: 30px;
    min-height: 100vh;
}
.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}
.page-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}
.summary-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.summary-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.summary-card-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}
.summary-card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a5f;
}
.summary-card-subtext {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}
.summary-card-subtext .highlight {
    color: #6f42c1;
    font-weight: 600;
}
.summary-card-subtext .highlight-green {
    color: #28a745;
    font-weight: 600;
}
.filter-section {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.filter-checkbox {
    margin-right: 15px;
    margin-bottom: 10px;
}
.filter-checkbox label {
    margin-left: 5px;
    font-weight: 500;
}

.btn-apply {
    background: linear-gradient(75deg, #0498d4 45%, #2d7897 100%);
    border-color: #0498d4;
    color: white;
}
.btn-apply:hover {
    background: linear-gradient(75deg, #2d7897 45%, #0498d4 100%);
    border-color: #2d7897;
    color: white;
}
.btn-clear {
    background: linear-gradient(75deg, #0498d4 45%, #2d7897 100%);
    border-color: #0498d4;
    color: white;
}
.btn-clear:hover {
    background: linear-gradient(75deg, #0498d4 45%, #2d7897 100%);
    border-color: #0498d4;
    color: white;
}
.data-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}
.table thead {
    background-color: #f8f9fa;
}
.table thead th {
    font-weight: 600;
    color: #1e3a5f;
    border-bottom: 2px solid #dee2e6;
    padding: 15px;
}
.table tbody td {
    padding: 15px;
    vertical-align: middle;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}
.table tbody td {
    white-space: normal;
    overflow: visible;
}
.table thead th {
    white-space: nowrap;
}
.profile-name {
    font-weight: 600;
    color: #1e3a5f;
}
.profile-role {
    color: #6c757d;
    font-size: 0.9rem;
}
.contact-item {
    margin-bottom: 8px;
}
.contact-item a {
    color: #0d6efd;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}
.contact-rating {
    font-size: 0.85rem;
    color: #6c757d;
}
.opening-hours-list {
    line-height: 1.8;
}
.opening-hours-list div {
    padding: 2px 0;
}
/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
    background: linear-gradient(135deg, #0498d4 0%, #2d7897 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px 25px;
    border-bottom: none;
}
.modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}
.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}
.modal-header .btn-close:hover {
    opacity: 1;
}
.modal-body {
    padding: 25px;
    background-color: #f8f9fa;
}
.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 15px 25px;
    background-color: white;
    border-radius: 0 0 12px 12px;
}
.modal-body .detail-row {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.modal-body .detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.modal-body .detail-label {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modal-body .detail-value {
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}
.modal-body .detail-value a {
    color: #0d6efd;
    text-decoration: none;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}
.modal-body .detail-value a:hover {
    text-decoration: underline;
}

/* Reviews Section */
.reviews-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #dee2e6;
}
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.reviews-header h6 {
    font-weight: 600;
    color: #1e3a5f;
    margin: 0;
    font-size: 1.1rem;
}
.review-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 3px solid #0498d4;
}
.review-item:last-child {
    margin-bottom: 0;
}
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.review-author {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.95rem;
}
.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review-rating .stars {
    color: #ffc107;
}
.review-time {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}
.review-text {
    color: #495057;
    line-height: 1.6;
    margin-top: 10px;
}
.no-reviews {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}
.no-reviews i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.3;
}

/* Info Cards in Modal */
.info-card {
    background: linear-gradient(75deg, #f3f3f8 45%, #a7c6e6 100%);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #aab0b3;
}
.info-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.info-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}
.info-card-value a {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    .sidebar.show {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
}


.btn-primary {
    background: linear-gradient(75deg, #0498d4 45%, #2d7897 100%);
    border-color: #2d7897;
    color: white;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #2d7897 0%, #0498d4 100%);
    border-color: #2d7897;
    color: white;
}
.btn-secondary {
    background: linear-gradient(75deg, #0498d4 45%, #2d7897 100%);
    border-color: #2d7897;
    color: white;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #2d7897 0%, #0498d4 100%);
    border-color: #2d7897;
    color: white;
}
.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}
.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: white;
}

a {
    color: #0498d4;
    text-decoration: none;
}   
a:hover {
    color: #0498d4;
    text-decoration: none;
}

