 body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, "Playfair Display"  ;
      background: #f3f3f3;
      max-height: auto;
    }

    header {
      height: 150px;
      background: linear-gradient(to right, rgb(37, 37, 64), rgb(158, 31, 99));
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 50px;
	  
    }

    header h1 {
      position: absolute;
      margin: 0;
      font-size: 2.6rem;
      left: 180px;
    }

    header img {
      width: 100px;
      height: 100px;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
      font-weight: bold;
    }

    nav a.active {
      text-decoration: underline;
      color: #2eb5ea;
    }
	
	.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #9e1f63;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

    .search-container {
      margin: 20px auto;
      text-align: center;
    }

    .search-container input {
      padding: 10px;
      width: 50%;
      max-width: 500px;
      font-size: 16px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .stickyfooter{
        width: 90%;
        height: auto;
        position: sticky;
        text-align: center;
        bottom: 0px;
        padding: 1px 0px;
        left: 5%;
        align-items: center;
        color: Yellow;
        background-color: #c8c8c8;
    }

    .file-table {
      width: 90%;
      margin: 0 auto;
      background: white;
      border-collapse: collapse;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .file-table th, .file-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
	
	.file-table a {
		text-decoration: none;
		
	}
	
	.file-table a:hover {
      color: rgb(158, 31, 99);
    }

    .file-table td .meta {
      font-size: 12px;
      color: #777;
    }

    .download-icon {
      cursor: pointer;
      color: #333;
      text-align: center;
    }

    .download-icon:hover {
      color: rgb(158, 31, 99);
    }