.file-card {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.file-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.file-card-header {
    display: flex;
    justify-content: flex-end;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.file-card-body {
    padding: 16px;
    text-align: center;
    flex-grow: 1;
}

.file-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    overflow: hidden;
}

.file-card-footer {
    padding: 8px;
    border-top: 1px solid #e0e0e0;
}

.file-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.file-name {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
    color: #333;
}
