/* Spoiler functionality */
.spoiler {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.bg-black {
    background-color: #000000;
}

.text-black {
    color: #000000;
}

.bg-transparent {
    background-color: transparent;
    cursor:default;
}

.text-gray-800 {
    color: #1f2937;
}

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #ffffff;
}

/* Button styling */
#reveal-all {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scroll-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000;
    background-color: #1f2937;
    color: #ffffff;
}

#scroll-button:hover {
    background-color: #374151;
    transform: translateY(-2px);
}