﻿.file-status {
    padding: 10px 0px;
    /*border-radius: 14px;*/
    /*background: #fff;*/
    /*box-shadow: 0 8px 24px rgba(0,0,0,.06);*/
}

.file-status__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.file-status__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

    .file-status__icon.ok {
        color: #059669;
        background: rgba(5,150,105,.12);
    }

    .file-status__icon.err {
        color: #dc2626;
        background: rgba(220,38,38,.12);
    }

    .file-status__icon.warn {
        color: #d97706;
        background: rgba(217,119,6,.12);
    }

.file-status__text {
    display: grid;
    gap: 4px;
}

.file-status__title {
    font-weight: 700;
    font-size: 13px;
}

.file-status__link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

    .file-status__link:hover {
        text-decoration: underline;
    }

.file-status__meta {
    font-size: 12px;
    color: #6b7280;
    overflow-wrap: anywhere;
}