.bg-brand { background-color: var(--dark-green); }
.bg-brand-hover:hover { background-color: var(--dark-green-hover); }
.bg-light-sky { background-color: var(--light-sky); }
.text-brand { color: var(--dark-green); }

/* Custom sidebar transition */
.sidebar-transition {
    transition: transform 0.3s ease-in-out;
}

.content-container {
    flex: 1; /* This makes the content area expand to fill available space */
    padding: 1.5rem 1rem;
    /* max-width: 1280px; */
    margin: 0 auto;
    width: 100%;
  }


  .__new-session-button {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #CA9A7B;
    color: white;
    border: none;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: absolute;
    right: 1rem;
}

.__new-session-button:hover {
    background-color: #D6A88C;
    transform: translateY(-1px);
}

.__new-session-button svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

@media (max-width: 768px) {
    .__new-session-button {
        display: flex;
    }


    .mobile-nav-item-close {
        transition: all 0.2s ease;
    }
    .mobile-nav-item-close:hover {
        color: #fff !important;
    }

    .mobile-nav-item-invite {
        transition: all 0.2s ease;
        color: #94A276;
        border: 1px solid #94A276;
    
    }

    .mobile-nav-item-invite:hover {
        color: #fff !important;
        border: 1px solid #fff;
        background-color: #395343 !important;
    }

    .mobile-nav-item{
        transition: all 0.2s ease;
        padding: 1rem 0.5rem;
        border-radius: 5px;
    }
    .mobile-nav-item:hover {
        background-color: #395343 !important;
        color: #fff !important;
    }
    .mobile-nav-item:hover i {
        color: #fff !important;
    }
}
