body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #333;
    margin: 0;
    padding: 0 1rem 2rem;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #003D33;
    color: #FFFFFF;
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.navbar .user-info {
    flex-grow: 1;
    text-align: right;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar .back-button {
    background-color: #003D33;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}
.navbar .back-button:hover {
    background-color: #00271d;
}



.container {
    max-width: 90%;
    background-color: #FFFFFF;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.button {
    display: inline-block;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 250px;
    text-align: center;
}
.button:hover {
    opacity: 0.8;
}

.btn-subir,
.btn-bajar,
.btn-documentar,
.btn-informes,
.btn-descargas {
    background-color: #003D33;
}



@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

h1#title {
  font-size: 2.5em;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(90deg, #003D33, #009688, #003D33);
  background-size: 200% auto;
  color: transparent;
  margin: 60px auto 40px; /
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 3s linear infinite;
}
