.documents-page {
    margin-top: 60px;
    padding: 60px 0;
    background: #f8f9fb;
}

/* Sidebar */
.filters {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 151px;
    
}

.filter-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 25px;
    color: var(--primary-color);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.btn-filter {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-filter:hover {
    background: #162d6b;
}


/* Documents */
.document-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.document-card:hover {
    transform: translateY(-3px);
}

.doc-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.doc-description {
    color: #64748b;
    margin-bottom: 15px;
}

.doc-meta {
    font-size: 14px;
    color: #475569;
    display: flex;
    justify-content: space-between;
}

.documents-page-wrapper{
    display: flex;
    gap: 20px;
}


.documents-page-wrapper .left{
    width: 30%;
}

.documents-page-wrapper .right{
    width: 70%;
}

.documents-page-wrapper .right .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 151px;
    z-index: 999;
}

.documents-page-wrapper .right .head .filter-group {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.documents-page-wrapper .right .head .filter-group label {
    margin-bottom: 0;
}

.documents-list .dl-head{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 29px 0;
}

.documents-list .dl-head img{
    width: 2rem;
    height: auto;
}

@media (max-width: 992px) {
    .documents-page-wrapper .right {
        width: 100%;
    }
    .documents-page-wrapper .right .head {
        top: 179px;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}
