/*** Add here all your css customizations ***/
.nikos img {
  width: 80%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  
}
.nikos2 img {
  border-radius: 50%;
}
	
.nikos3 img {
  width: 33%;
  
}

.nikos44 {
 border-radius: 50%;
}
/* ------------------------- */
/* Sticky Button για Desktop & Mobile */
/* ------------------------- */
.sticky-button {
    position: fixed !important;      /* πάντα πάνω από το περιεχόμενο */
    bottom: 20px !important;         /* απόσταση από κάτω */
    left: 20px !important;          /* απόσταση από δεξιά */
    background-color: #ff0000 !important;
    color: #fff !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    z-index: 9999 !important;        /* πάνω από όλα */
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 16px !important;
    display: block !important;       /* σιγουρευόμαστε ότι φαίνεται */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
    transition: transform 0.2s, opacity 0.2s;
}

/* Hover effect */
.sticky-button:hover {
    opacity: 0.9 !important;
    transform: scale(1.05) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sticky-button {
        bottom: 15px !important;
        right: 15px !important;
        font-size: 14px !important;
        padding: 12px 20px !important;
        display: block !important;
    }
}