.container {
    margin-top: 100px;
}

.metadata {
    margin-top: 20px;
}

.search-container {
    margin-bottom: 20px;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-right: 1px solid rgba(27, 58, 89, 0.1); /* Transparansi 30% */
}

.file-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: calc(100% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.file-thumbnail {
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.thumbnail-icon {
    font-size: 30px;
    color: #0b0069;
}

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

.file-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.file-description {
    color: #555;
    margin-bottom: 5px;
}

.file-date {
    color: #777;
    font-size: 0.875rem;
}

.file-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-info {
    background-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background-color: #138496;
}

.pagination {
    font-size: 0.875rem;
}

.pagination li {
    margin: 0 2px;
    margin-top: 30px;
}

.pagination .page-link {
    padding: 5px 10px;
    border-radius: 4px;
    color: #007bff;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}