.image-card {
    margin-bottom: 20px;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.like-button {
    cursor: pointer;
    color: #dc3545;
}

.like-button.liked {
    color: #dc3545;
}

.like-count {
    margin-left: 5px;
}

.download-button {
    margin-top: 10px;
}

#previewSection img {
    max-height: 400px;
    object-fit: contain;
}

.progress {
    height: 25px;
}

#statusMessage {
    margin-top: 10px;
    font-weight: 500;
}

.image-container {
    position: relative;
    display: inline-block;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s;
}

.delete-button:hover {
    background: rgba(255, 255, 255, 1);
}

.image-pair {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.original-image,
.translated-image {
    flex: 1;
    text-align: center;
}

.original-image img,
.translated-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.share-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #218838;
} 