/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* 
#custom-navbar .elementor-nav-menu .sub-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  min-width: 320px;
}

#custom-navbar .elementor-nav-menu .sub-menu li {
  list-style: none;
} */

.hidethis {
    display: none !important;
}
.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    
    /* Αυτά τα 3 είναι που κάνουν ΟΛΟ το κουτί clickable */
    display: flex;
    width: 100%;
    padding: 15px; /* Μεγαλώσαμε λίγο το padding για πιο εύκολο κλικ */
    box-sizing: border-box; 
    
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Αφαιρεί το default βελάκι */
    
    /* Προαιρετικά: Βάλε ένα ελαφρύ background για να φαίνεται ακριβώς ποια είναι η clickable περιοχή */
    background-color: #f9f9f9;
    border-radius: 5px; /* Λίγο στρογγύλεμα στις γωνίες */
}

/* Hover εφέ για να καταλαβαίνει ο χρήστης ότι πατιέται όλο το πλαίσιο */
.faq-question:hover {
    background-color: #f1f1f1;
}

/* Το σύμβολο + στα δεξιά (όπως το είχαμε) */
.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Κρύβουμε το default βελάκι σε Safari/Chrome */
.faq-question::-webkit-details-marker {
    display: none;
}