/* Stiluri pentru butonul sticky */
.sticky-button {
    position: fixed;
    top: 120px; /* Ajustează în funcție de înălțimea navbar-ului */
    left: 20px;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Light Mode */
body.light-mode .sticky-button {
    background-color: #560027;
    color: #fff;
    border: none;
}

body.light-mode .sticky-button:hover {
    background-color: #470121;
}

body.light-mode .offcanvas {
    background-color: #fff;
}

body.light-mode .offcanvas-title {
    color: #560027;
}

body.light-mode .nav-link {
    color: #560027;
}

body.light-mode .nav-link:hover {
    background-color: rgba(86, 0, 39, 0.1);
}

/* Dark Mode */
body.dark-mode .sticky-button {
    background-color: #282c34;
    color: #F2D0A4;
    border: 1px solid rgba(242, 208, 164, 0.3);
}

body.dark-mode .sticky-button:hover {
    background-color: rgba(242, 208, 164, 0.2);
}

body.dark-mode .offcanvas {
    background-color: #2d2d2d;
    color: #F2D0A4;
}

body.dark-mode .offcanvas-title {
    color: #F2D0A4;
}

body.dark-mode .nav-link {
    color: #F2D0A4;
}

body.dark-mode .nav-link:hover {
    background-color: rgba(242, 208, 164, 0.1);
}

/* Stiluri comune pentru Offcanvas */
.offcanvas {
    width: 300px;
}

.offcanvas-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-link {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-button {
        left: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .offcanvas {
        width: 260px;
    }
}