.gfe-file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}
.gfe-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1a202c;
    background: #ffffff;
    transition: box-shadow .2s, transform .2s;
    width: 100%;
    box-sizing: border-box;
}
.gfe-file:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    transform: translateY(-2px);
}
.gfe-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    margin-right: 10px;
}
.gfe-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}
.gfe-filetype-label {
    font-size: 10px;
    color: #E53E3E;
    margin-top: 4px;
    text-transform: uppercase;
}
.gfe-meta {
    flex: 1;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}
.gfe-title {
    font-weight: 600;
}
.gfe-size {
    font-size: 13px;
    color: #718096;
    margin-top: 2px;
}
.gfe-download-container {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #4A5568;
}
.gfe-download-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}
.gfe-css-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
}
.gfe-block-placeholder {
    padding: 20px;
    border: 1px dashed #ccd0d4;
    background: #f9fafb;
    border-radius: 4px;
}
