@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

html {
  height: auto;
  min-height: 100%;
  overflow-y: auto;   
  overflow-x: hidden; 
}

body {
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #eaeaef;
  color: #333;
  overflow: visible;
}

/* Wrapper για ολόκληρη τη σελίδα - Εδώ είναι το Flexbox container */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header -*/
#site-header {
  flex-shrink: 0;
}

/* Main περιεχόμενο */
.site-main {
  flex: 1 0 auto;
  padding: 0;
}

footer {
  flex-shrink: 0;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;      
  background: transparent;  
}


/* Κεντρικό περιεχόμενο / table wrapper */
.table-wrapper {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 50px auto;
  max-width: 1800px;
  width: 90%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.file__size {
  font-size: 0.85em;
  color: #666;
  margin-left: 5px;
}