/* transitions */
.candle-body {
    transition: height 1s linear, background-color 0.3s ease, box-shadow 0.3s ease;
}
.wick-container {
    transition: bottom 1s linear, opacity 0.5s ease;
}

/* Base styles to ensure full height */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

/* Hides scrollbar for chrome/safari/opera */
::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Title Toggle Button Active State */
#btn-title-toggle.active {
    border-color: var(--accent-color, #f59e0b) !important;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

#btn-title-toggle.active i,
#btn-title-toggle.active span {
    color: var(--accent-color, #f59e0b) !important;
}
