.main-page {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
}

/* Icon Styling */
details summary::before {
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 5px 10px 0px 0;
    text-wrap: nowrap;
}

/* Default (Closed) Icon */
details:not([open]) summary::before {
    background-image: url("/app/static/images/folder_close.png");
}

/* Open State Icon */
details[open] summary::before {
    background-image: url("/app/static/images/folder_open.png");
}

summary {
    cursor: pointer;
    align-items: center;
    display: flex;
    gap: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;     
    user-select: none;
}

.directory-content {
    margin-left: 2vw;
        margin-bottom: 0;

}

.file-list {
    margin: 0 auto;
    width: 75%;
    list-style: none;
    padding-left: 10px;
}

.item-file, .file-icon {
    width: 20px;

    height: auto;
}

span a {
    /* color: white; */
    color: black;
    text-decoration: none;
}

span a:hover {
    text-decoration: underline;
}

p {
    margin-bottom: 0;
}


