.list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #0d6efd;
    --bs-list-group-active-border-color: #0d6efd;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
}

:root {
    --primary-color: #1877f2; /* Facebook-like blue */
    --secondary-color: #42b72a;
    --header-height: 80px;
}

body {
    background-color: #f0f2f5;
}

/* Main Navigation */
.main-nav {
    height: var(--header-height);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Feed Layout */

.feed-container {
    position: relative;
    margin: 0 auto;
    margin-top: var(--header-height);
    width: 1030px; /* 240 + 550 + 240 */
    height: calc(100vh - var(--header-height));
}

.login-container{
    height: 100vh;
  margin-top: 0;
}

/* Left Sidebar */
.left-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 240px;
    height: 100%;
    background: #f0f2f5;
}
.padding-top-0
{
    padding-top: 0px !important;
}

/* Right Sidebar */
.right-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
}

/* Main Content */
/* .main-content {
    margin-left: 240px;
    margin-right: 240px;
    padding: 5px;
    width: 100%;
} */

/* Post Card */
.post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    padding: 15px;
}

/* Activity Badge */
.activity-type-badge {
    position: absolute;
    right: 15px;
    top: 15px;
}
.hamburger {
    display: none; 
}

@media (max-width: 995px) {
    .hamburger {
        display: block; /* Show hamburger on mobile */
    }
}


/* Mobile Sidebar (Slide-In Effect) */
@media (max-width: 768px) {

   

    .left-sidebar.show {
        display: block; /* Show it when toggled */
        transform: translateX(0); /* Slide in */
    }

    .feed-container {
        flex-direction: column;
    }
    .feed-container {
        width: 100%;
    }
    
    .left-sidebar {
        display: none;
        position: fixed;
        left: 0;
        top: var(--header-height);
        width: 260px;
        height: calc(100vh - var(--header-height));
        background: white;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .left-sidebar.show {
        transform: translateX(0);
    }

    /* Close Sidebar Button */
    .close-sidebar-btn {
        display: block;
        background: #ff4d4d;
        color: white;
        border: none;
        padding: 10px;
        text-align: center;
        width: 100%;
        cursor: pointer;
    }

    .activity-feed-wrapper {
        margin: 0 !important;
        width: 100%;
    }

    .left-sidebar,
    .right-sidebar {
        display: none !important;
    }
}


.list-group-item.active {
    z-index: 2;
    color: white !important;
    background-color: #ea0728 !important;
    border-color: #ea0728;
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item-action:focus, .list-group-item-action:hover {
    z-index: 1;
    color: var(--bs-list-group-action-hover-color);
    text-decoration: none;
    background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item {
    position: relative;
    display: block;
    text-decoration: none;
    background-color: white;
    border: 1px solid #eee;
    padding: 5px 10px;
}
.list-group-item-action {
    width: 100%;
    color: var(--bs-list-group-action-color);
    text-align: inherit;
}

.form-control {
    font-size: 15px !important;
}
.form-select {
    font-size: 15px !important;
}
.sportsman-class{
    background-color: white;
}

.login-type-container
{
    background-color: #afafaf;
   padding: 5px 30px 0 30px;
    border-radius: 5px;
}

.active-login-type-container
{
    background-color: #e51330;
}