html, body {
    height: 100%; /* Ensures the body takes up the full height of the viewport */
    margin: 0; /* Removes default margin provided by browsers */
    padding: 0; /* Removes default padding provided by browsers */
    overflow-x: hidden; /* Prevents horizontal scrolling caused by overflow */
    font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif; 

}
body {
    background-image: url('/.sky.jpg'); /* Path to your background image */
    background-position: center center; /* Centers the background image vertically and horizontally */
    background-repeat: no-repeat; /* Prevents the background image from repeating */
    background-size: cover; /* Scales the background image to 100% width of the viewport, auto adjusts the height */
    background-attachment: fixed; /* Optional: Keeps the background image fixed during scrolling */
}

pre {
    color: #121853;
    margin: 10px;
    min-width: 500px;
/*    background-color: #d0ebf8; */
}

a,h1 {
   margin: 15px;
}

hr {
    display: none;
}

.nginx-list {
    min-width: 500px;
    padding: 10px 10px;
/*    border-bottom: 2px rgba(18, 24, 83, 0.44) solid; */
/*    border-top: 2px rgba(18, 24, 83, 0.44) solid; */
    font-size: 16px;
}

.nginx-list > li {
    display: flex;
    list-style: none;
    line-height: 34px;
    border-bottom: 1px rgba(18, 24, 83, 0.44) dotted;
    padding: 0 10px;
}

.nginx-list > li.back .svg-icon {
    height: 25px;
    margin: 5px 0;
    fill: #121853;
}

.nginx-list > li:hover {
    background-color: #a5a5fd;
    border-bottom-color: #121253;
}

.nginx-list > li .date {
    order: 2;
    flex: 1;
    text-align: start;
    margin-right: 10px;
}

.nginx-list > li .size {
    order: 3;
    flex: 1;
    text-align: end;
    min-width: 75px;
}

.nginx-list > li a {
    order: 1;
    flex: 3;
    margin-right: 10px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    font-weight: bold;
}

.nginx-list > li a,
.nginx-list > li a:visited {
    text-decoration: none;
    color: black;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.nginx-list > li span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 250px;
    display: inline-block;
    color: #666;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgba(255, 255, 255, 0.45);
}

a {
   color: #000;
}
