/* ============================================================
   Info Documents Module — единый стиль карточек документов
   ============================================================ */

.info-documents-list {
    margin-top: 24px;
}

.info-doc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 20px;
    margin-bottom: 10px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    gap: 16px;
}

.info-doc-row:hover {
    border: solid 1px transparent;
    box-shadow: 0 5px 15px rgba(0 0 0 / .12);
}

.info-doc-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.info-doc-badge {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.info-doc-badge--pdf  { background: #d32f2f; }
.info-doc-badge--doc  { background: #1565c0; }
.info-doc-badge--docx { background: #1565c0; }
.info-doc-badge--xls  { background: #2e7d32; }
.info-doc-badge--xlsx { background: #2e7d32; }
.info-doc-badge--other { background: #757575; }

.info-doc-meta {
    min-width: 0;
}

.info-doc-name {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

.info-doc-desc {
    color: #757575;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

.info-doc-size {
    color: #9e9e9e;
    font-size: 11px;
    line-height: normal;
}

.info-doc-action {
    flex-shrink: 0;
    margin-left: 16px;
}

.info-doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d60000;
    color: #ffffff !important;
    border-radius: 3px;
    text-decoration: none !important;
    font-size: 13px;
    line-height: 1;
    padding: 7px 14px;
    transition: background 0.2s ease;
    text-decoration: none;
    transition: all .3s;
}

.info-doc-btn:hover {
    background: #a20505;
    color: #ffffff !important;
    text-decoration: none;
}
