/* Kontener z listą plików – dwie kolumny */
.excel-files-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Na komórkach – jedna kolumna */
@media (max-width: 768px) {
    .excel-files-grid {
        grid-template-columns: 1fr;
    }
}

/* Pojedynczy element */
.excel-file-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Wrapper ikony */
.excel-file-icon-wrap {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ikona z obrazka */
.excel-file-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Teksty i przycisk */
.excel-file-text {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.excel-file-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    flex: 1;
}

/* Przycisk „Pobierz” */
.excel-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #1b7e28;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.1s ease;
}

.excel-file-button:hover,
.excel-file-button:focus {
    background: #145c1d;
    transform: translateY(-1px);
}
