
html, body {
    height: 100%;
    margin: 0;
  }
  body {
    display: flex;
    flex-direction: column;
  }
  .main-content {
    flex: 1 0 auto;
      padding-bottom: 2rem;
  }
  footer {

    flex-shrink: 0;
  }



.container-download {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}


.custom-col-3 {
    background: #f6f9fc;
    color: rgb(27, 13, 102);
    cursor: pointer;
}


.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}


.btn-download {
    background: #290c4f;
    color: white;
    margin: 1rem
}

.btn-my-file {
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-my-file:hover {
    background-color: #dcdcdc;
}

.icon-lg {
    font-size: 1.5rem;
    color: #666;
}


.file-list {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.file-item:hover {
    background-color: #f9f9f9;
}


.file-item:last-child {
    border-bottom: none;
}


.file-info {
    flex-grow: 1;
}


.file-name {

    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.file-meta {
    font-size: 12px;
    color: #666;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.info-block {
    background: white;
    border: 0
}

.file-download-buttons {
    display: flex;
    justify-content: space-between;
}

.pagination {
    margin: 1px;
}

.pagination-wrapper {
    margin: 1rem auto 1rem;
    padding: 1rem;
    background: white;
    border: 0;
}

.pagination-colors .page-item.active .page-link {
    background: #290c4f62;
    color: rgb(255, 255, 255, 0.55);
}

.pagination-colors .page-link {
    color: rgb(33, 37, 41, 1);
    border-radius: 8px;
}

.pagination-colors .page-link:hover {
    color: rgb(33, 37, 41, 1);
    background: rgb(255, 255, 255, 0.55);
}