body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Διόρθωση για το fixed navbar */
body {
    padding-top: 60px; 
}

/* Φτιάξιμο των εικόνων μέσα στα άρθρα */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

h1, h2, h3 {
    color: #2e7d32; /* Σκούρο πράσινο */
}

blockquote {
    border-left: 4px solid #2e7d32;
    padding-left: 15px;
    background: #e8f5e9;
    padding: 10px;
    font-style: italic;
}

/* Swiper Slider Styles */
.swiper { width: 100%; height: 400px; background: #000; border-radius: 8px; }
.swiper-slide { text-align: center; font-size: 18px; background: #000; display: flex; justify-content: center; align-items: center; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Edit Image Grid */
.img-manage-card { position: relative; border: 1px solid #ddd; padding: 5px; border-radius: 4px; }
.img-manage-card img { width: 100%; height: 100px; object-fit: cover; }
.delete-overlay { display: block; margin-top: 5px; text-align: center; background: #ffebee; color: #c62828; padding: 2px; font-size: 0.9em; border-radius: 3px; cursor: pointer; }
.delete-checkbox:checked + .delete-overlay { background: #c62828; color: white; font-weight: bold; }

