/*
===============================================================================
Ars Viva Framework
Component: Document List
File: documents.css
Version: 1.0.0
===============================================================================
*/

.av-document-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.av-document-button {
    background: #c0bfbd;
    color: #555;
    padding: 10px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 500;
    display: block;
    border-radius: .35rem;
    text-decoration: none;
    transition: all .2s ease;
}

.av-document-button::before {
    content: "📄";
    margin-right: .6rem;
    opacity: .8;
}

.av-document-button:hover {
    background: #000;
    color: #fff;
    transform: translateX(4px);
}

.av-document-button:hover::before {
    content: "▶";
}