.files-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 10px;
}

.file-card {
    width: 180px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.thumbnail__min-item {
    max-width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.files__type {
    font-size: 0.875rem;
    margin-top: auto;
    text-align: center;
    line-height: 1.2;
    min-height: 2.5em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.file-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 6px;
    right: 6px;
}

.file-actions .btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.btn-delete i {
    font-size: 18px;
    color: var(--bs-danger);
}