body, html {
    height: 100%;
    margin: 0;
    font-family: Arial;
    background-color: #957d95;
    font-family: Arial, sans-serif;
    background-image: url('/static/bg_edit.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    background-size: cover;
}


.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 100px;
    opacity: 75%;
    background-color: #eaf4f4;
    border: 2px solid #eaf4f4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    font-size: 24px;
    margin-bottom: 20px;
    color: #957d95;
}

.description {
    color: #957d95;
    font-size: 16px;
    width: 500px;
}

#output ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    color: #957d95;
}

.download-header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #957d95;
}

#download-list li {
    color: #957d95;
    margin-bottom: 10px;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #ccc;
    background-color: #f9f9f9;
}

.error-message {
    font-size: 14px;
    text-align: center;
    color: red;
}
/* Style tab links */
.tablink {
    background-color: black;
    color: white;
    float: left;
    border: none;
    border-bottom: 3px solid #957d95;
    height: 75px;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 33.33%;
  }
  
  .tablink:hover {
    background-color: #957d95;
  }
  
  /* Style the tab content (and add height:100% for full page content) */
  .tabcontent {
    color: black;
    display: none;
    padding: 100px 20px;
    height: 100%;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }