/* Profile Banner */
.profile-banner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Profile Picture */
.profile-pic-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
}
.profile-pic-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Group Info */
.group-name {
    margin-top: 60px;
    font-size: 28px;
}
.group-summary {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

/* Social Links */
.group-links {
    margin-top: 10px;
}
.group-links a {
    text-decoration: none;
    margin: 5px;
    padding: 8px 12px;
    background: #222;
    color: white;
    border-radius: 5px;
    display: inline-block;
}

/* Tabs */
/* Tabs */
.group-tabs {
    display: none;
}
.tab-link {
    display: none;
}
.tab-link.active {
    display: none;
}

/* Tab Content */
.tab-content {
    display: block;
    padding: 0px;
    background: #f8f8f8;
    border-radius: 5px;
}
.tab-content.active {
    display: block;
}

/* Mini Calendar */
.mini-calendar {
    width: 100%;
    height: 250px;
    border: none;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .profile-banner {
        height: 180px;
    }
    .profile-pic-container {
        width: 90px;
        height: 90px;
        bottom: -40px;
    }
    .group-name {
        font-size: 22px;
    }
.tab-link {
    padding: 8px;
    font-size: 14px;
}
}

/* Tour Table */
.tour-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tour-table th,
.tour-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.tour-table th {
    text-align: left;
}

.tour-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Layout for large screens */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 992px) {
    .details-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
