﻿
.document-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.75rem;
}

.document-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.document-name {
    font-weight: 500;
    color: #333;
    display: flex;
    flex-direction: column;
}

.document-status {
    margin-top: 0.25rem;
}

.document-action {
    display: flex;
    align-items: center;
}


