/* === Document Library Grid === */
.wp-doc-library-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .wp-doc-library-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wp-doc-library-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* === Folder Card === */
.wp-doc-folder {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* Folder Header */
.wp-doc-folder-head {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* === Custom Gold Folder Icon === */
.folder-icon {
    width: 24px;
    height: 18px;
    display: inline-block;
    background-color: #ad9159; /* gold tone */
    border: 1px solid #ad9159;
    border-radius: 2px 2px 0 0;
    position: relative;
}

.folder-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 3px;
    width: 10px;
    height: 5px;
    background-color: #ad9159;
    border-radius: 2px 2px 0 0;
}

/* Folder Title */
.folder-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Folder Body */
.wp-doc-folder-body {
    display: none;
    margin-top: 10px;
}

/* Document List */
.wp-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-doc-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-top: 1px dashed #f0f0f0;
}

/* === Download Button === */
.doc-download {
    background: #ad9159; /* gold tone for button */
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.doc-download:hover {
    opacity: 0.9;
}
