/* css/pixelfed-embed.css */
.pixelfed-embed {
    max-width: 100%;
    margin: 0 auto;
}

.pixelfed-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
    margin-bottom: 20px;
}

.pixelfed-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.pixelfed-load-more,
.pixelfed-follow-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    background-color: #3897f0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.pixelfed-load-more:hover,
.pixelfed-follow-button:hover {
    background-color: #1877f2;
}

.pixelfed-load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}