body {
    background-color: #1b1b1b;
    color: #fafaf9;
}

.custom-text-color {
    color: #fafaf9;
}

main {
    max-width: 1100px;
    margin: auto;
}

.custom-button {
    background-color: #6d5a72;
    transition: transform 0.2s;
}

.custom-button:hover {
    background-color: #c2785b;
    transform: scale(1.05);
}

/* Folder Structure */

#folder-structure-div {
    text-align: left;
    border: 2px solid #6d5a72;
    border-radius: 12px;
}

.folder-structure {
    font-family: Arial, sans-serif;
}

.folder-structure ul {
    list-style-type: none;
    padding-left: 20px;
}

.folder {
    cursor: pointer;
    color: #c2785b;
}

.nested {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nested.show {
    max-height: 2000px;
}

/* Folder Structure */

/* Footer */

footer {
    background-color: rgb(55, 61, 71);
}

/* Footer */

/* Loader */

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6d5a72;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loader */

@media screen and (max-width: 500px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}
