.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}

    /* Documents List */
.documents-list {
    padding: 0;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.document-item:hover {
    background-color: var(--light);
}

.document-item:last-child {
    border-bottom: none;
}

.document-icon {
    width: 45px;
    height: 45px;
    background: #ffeaea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.3rem;
    flex-shrink: 0;
}

.document-icon i {
    color: #e74c3c;
    font-size: 1.5rem;
}

.document-info {
    flex-grow: 1;
}

.document-info h5 {
    color: #002d58;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: large;
}

.document-info p {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.document-actions {
    display: flex;
    gap: 0.5rem;
}

/* View More Section */
.view-more-section {
    padding-top: 1rem;
    text-align: center;
}

.view-more-btn {
    color: #002d58;
    text-decoration: none;
    font-weight: 500;
}

.view-more-btn:hover {
    color: #194c44;
}

.view-more-btn.collapsed .fa-chevron-down {
    transform: rotate(0deg);
}

.view-more-btn .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .document-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .document-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .document-info {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .document-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
.download-btn{
    color: white;
    background-color: var(--accent);
}

.badge {
    background-color: var(--accent);
}
.badge:hover {
    background-color: var(--accent);
}

.download-btn:hover{
    color: var(--accent);
    border-color: var(--accent);
    background-color: transparent;
}


/* for SharePoint */
.page-content{
    padding: 0 0.7rem;
}

@media (max-width: 576px) {
    .page-content{
        padding: 0;
    }
}