.sis-trigger-btn {
    position: fixed;
    z-index: 9998;
    background: #d02030;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.sis-trigger-btn:hover {
    background: #000;
    transform: scale(1.05);
	color:#fff;
}

.sis-trigger-btn:empty::before {
    content: '☰';
    font-size: 18px;
}
#b_site,body {
    transition: right 0.3s ease-in-out, left 0.3s ease-in-out, margin 0.3s ease-in-out !important;
	left:0;
	right:0;
		
}
.sis-sidebar {
    position: fixed;
    top: 0;
   height: auto;
    max-height: 100vh;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 9999;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
}

.sis-sidebar-left {
    left: 0;
    transform: translateX(-100%);
}

.sis-sidebar-right {
    right: 0;
    transform: translateX(100%);
}

.sis-sidebar.active {
    transform: translateX(0);
}

.sis-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
	color: #000 !important;
  font-size: 30px !important;
  font-weight: 300;
}

.sis-close-btn:hover {
    background: #f0f0f0;
    color: #000;
}
#sis-sidebar-sidebar_693aecd57a37,
#sis-sidebar-sidebar_693ac6af89f86{
	background:#f4f2ee
}
.sis-sidebar-content {
    padding: 60px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 90px); /* Full height minus padding */
    text-align: center;
}

.sis-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sis-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.sis-push-mode {
    transition: margin 0.3s ease-in-out;
}

body.sis-push-left {
    margin-left: 0;
}

body.sis-push-right {
    margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sis-sidebar {
        width: 85% !important;
        max-width: 350px;
    }
    
    .sis-trigger-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .sis-sidebar-content {
        padding: 50px 20px 20px 20px;
    }
}

/* Content styling inside sidebar */
.sis-sidebar-content h1,
.sis-sidebar-content h2,
.sis-sidebar-content h3,
.sis-sidebar-content h4,
.sis-sidebar-content h5,
.sis-sidebar-content h6 {
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.sis-sidebar-content p {
    margin-bottom: 1em;
}

.sis-sidebar-content img {
    max-width: 100%;
    height: auto;
}

.sis-sidebar-content a {
    color: #2271b1;
    text-decoration: none;
}

.sis-sidebar-content a:hover {

}

/* Font Awesome Icon spacing */
.sis-trigger-btn i {
    margin-right: 1px;
	color: #d02030;background: #fff;border-radius: 100%;padding: 10px;
}

.sis-trigger-btn i:only-child {
    margin-right: 0;
}
