/* === קובץ CSS לעמוד האירועים === */
:root {
    --primary-colorS: #2192ca;
    --primary-dark: #085780;
    --primary-light: #2194d3;
    --accent-color: #ffcc00;
    --accent-dark: #e6b800;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-light: #f5f5f5;
    --background-dark: #1a1a1a;
    --card-background: #ffffff;
    --border-radius: 10px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* === איפוס וסגנונות בסיס === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.backimgpage1 {
    
    background: linear-gradient(to left, rgba(83, 135, 161, 0.9), rgba(8, 87, 128, 0.9)), url('../img/SORA.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
}


a {
    text-decoration: none;
    color: inherit;
}

/* === מיכל עמוד האירועים === */
.events-page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 1;
    margin-top: 13vh;
}

/* === כותרת עליונה === */
.hero-section {
    background: linear-gradient(to left, rgba(13, 112, 163, 0.9), rgba(8, 87, 128, 0.9)), url('../img/SORA.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    margin: 30px 0;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpS 3s forwards 0.2s;
}
@keyframes fadeInUpS {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(251 102 149 / 31%), transparent);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--light-text);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    color: var(--light-text);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--background-light);
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-container button {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-colorS);
    color: white;
    border: none;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-container button:hover {
    background: var(--primary-dark);
}

/* === כותרות חלקים === */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(156, 192, 209);
    

}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--background-light);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
 
    animation: fadeInUpS1 3s forwards 0.6s;
}
@keyframes fadeInUpS1 {
    0% {
        opacity: 0;
       
    }
    100% {
        opacity: 1;
       
    }
}
.section-header h2 i {
    color: var(--accent-color);
}

.section-header.with-filter {
    flex-wrap: wrap;
}

.events-filter {
    display: flex;
    align-items: center;
}

.events-filter select {
    padding: 8px 15px;
    border: 1px solid rgba(13, 112, 163, 0.3);
    border-radius: 20px;
    background-color: transparent;
    color: var(--light-text);
    cursor: pointer;
    background: var(--primary-colorS);
}

.events-filter select:focus {
    outline: none;
    border-color: var(--primary-colorS);
}

/* === אירוע החודש === */
.featured-event-section {
    margin: 50px 0;
}

.featured-event {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 30px;
    background: linear-gradient(to left, #ffffff, #f8f9fa);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpS 2s forwards 0.4s;
}

.featured-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-event-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-event-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: var(--transition);
}

.featured-event:hover .featured-event-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.featured-event-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-event-date .day {
    font-size: 2rem;
    line-height: 1;
    display: block;
}

.featured-event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.featured-event-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-event-content h3 {
    font-size: 2.2rem;
    color: var(--primary-colorS);
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

.event-detail i {
    color: var(--primary-colorS);
    font-size: 1.2rem;
}

.event-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.view-details-button {
    align-self: flex-start;
    background: var(--primary-colorS);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-details-button:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-details-button:hover {
    background: var(--primary-light);
}

.view-details-button:hover:after {
    transform: translateX(-5px);
}

/* === אירועי סוף השבוע === */
.weekend-events-section {
    margin: 60px 0;
}

.weekend-events-slider {
    position: relative;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    margin: -20px -10px;
}

.weekend-event-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.weekend-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-date .day {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
}

.card-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-colorS);
    margin-bottom: 15px;
    line-height: 1.3;
    height: 3.1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.card-detail i {
    color: var(--primary-colorS);
    width: 16px;
    text-align: center;
}

.card-button {
    display: block;
    background: var(--primary-light);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.card-button:hover {
    background: var(--primary-colorS);
}

/* === קלפים ריקים === */
.empty-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #f1f5f9, #e2e8f0);
    border: 2px dashed rgba(13, 112, 163, 0.3);
}

.empty-card-content {
    text-align: center;
    padding: 20px;
    color: var(--primary-colorS);
}

.empty-card-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.empty-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.empty-card-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.subscribe-button {
    background: var(--primary-colorS);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-button:hover {
    background: var(--primary-dark);
}

/* === כפתורי ניווט בסליידר === */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-colorS);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--primary-colorS);
    color: white;
}

.slider-nav.prev {
    right: -20px;
}

.slider-nav.next {
    left: -20px;
}

/* === קטגוריות === */
.event-categories-section {
    margin: 60px 0;
}

.categories-grid {
    display: flex;
    gap: 0px; 
justify-content: space-around;
}

.category-card {
    background: white;
border-radius: var(--border-radius);
padding: 25px 15px;
text-align: center;
box-shadow: var(--box-shadow);
transition: var(--transition);
width: 14%;

display: flex;
justify-content: center;
align-items: center;
FLEX-DIRECTION: column;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpS 2s forwards 5s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to left, var(--primary-light), var(--primary-colorS));
   color: white;
}

.category-icon {
   font-size: 2rem;
   color: var(--accent-color);
   margin-bottom: 15px;
}

.category-card:hover .category-icon {
   transform: scale(1.1);
}

.category-card h3 {
   font-size: 1.1rem;
   color: var(--primary-colorS);
   transition: var(--transition);
}

.category-card:hover h3 {
   color: white;
}

/* === רשימת אירועים === */
.all-events-section {
   margin: 60px 0;
}

.events-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 25px;
}

.event-card {
   background: white;
   border-radius: var(--border-radius);
   overflow: hidden;
   box-shadow: var(--box-shadow);
   transition: var(--transition);
   height: 100%;
   display: flex;
   flex-direction: column;
}

.event-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-image {
   height: 180px;
   background-size: cover;
   background-position: center;
   position: relative;
}

.event-overlay {
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
   transition: var(--transition);
}

.event-badge {
   position: absolute;
   top: 10px;
   left: 10px;
   padding: 5px 12px;
   border-radius: 20px;
   font-size: 0.8rem;
   font-weight: 600;
   z-index: 2;
}

.today-badge {
   background: #ff4d4d;
   color: white;
   animation: pulse 2s infinite;
}

.this-week-badge {
   background: var(--accent-color);
   color: var(--text-color);
}

@keyframes pulse {
   0% {
       box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
   }
   70% {
       box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
   }
   100% {
       box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
   }
}

.event-date {
   position: absolute;
   bottom: 10px;
   right: 10px;
   background: var(--accent-color);
   color: var(--text-color);
   padding: 8px 15px;
   border-radius: var(--border-radius);
   text-align: center;
   font-weight: 600;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
   z-index: 2;
}

.date-number {
   font-size: 1.5rem;
   line-height: 1;
}

.date-month {
   font-size: 0.8rem;
   text-transform: uppercase;
}

.event-info {
   padding: 20px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
}

.event-info h3 {
   margin: 0 0 15px;
   color: var(--primary-colorS);
   font-size: 1.2rem;
   line-height: 1.3;
   height: 3.1rem;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

.event-meta {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 20px;
}

.event-time, .event-location, .event-price {
   display: flex;
   align-items: center;
   color: #666;
   font-size: 0.9rem;
}

.event-time i, .event-location i, .event-price i {
   margin-left: 8px;
   color: var(--primary-colorS);
   width: 16px;
}

.event-button {
   margin-top: auto;
   background: var(--primary-light);
   color: white;
   padding: 10px;
   border-radius: var(--border-radius);
   text-align: center;
   font-weight: 500;
   transition: var(--transition);
}

.event-card:hover .event-button {
   background: var(--primary-colorS);
}

/* === כפתור טעינת אירועים נוספים === */
.load-more-container {
   text-align: center;
   margin-top: 40px;
}

.load-more-button {
   background: transparent;
   color: var(--primary-colorS);
   border: 2px solid var(--primary-colorS);
   padding: 12px 30px;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
}

.load-more-button:hover {
   background: var(--primary-colorS);
   color: white;
}

/* === הודעה על אין אירועים === */
.no-events-message {
   grid-column: 1 / -1;
   text-align: center;
   padding: 60px 20px;
   background: #f0f4f8;
   border-radius: var(--border-radius);
   border: 2px dashed rgba(13, 112, 163, 0.3);
}

.no-events-message i {
   font-size: 3rem;
   color: #cbd5e1;
   margin-bottom: 20px;
}

.no-events-message h3 {
   font-size: 1.5rem;
   color: var(--primary-colorS);
   margin-bottom: 10px;
}

.no-events-message p {
   color: #64748b;
}

/* === רישום לניוזלטר === */
.newsletter-section {
   margin: 80px 0 40px;
   background: linear-gradient(to left, var(--primary-colorS), var(--primary-dark));
   border-radius: var(--border-radius);
   padding: 40px;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.newsletter-section::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: url('../img/background1ran.png');
   opacity: 0.05;
   z-index: 0;
}

.newsletter-content {
   position: relative;
   z-index: 1;
}

.newsletter-section h2 {
   color: white;
   font-size: 2rem;
   margin-bottom: 15px;
}

.newsletter-section p {
   color: rgba(255, 255, 255, 0.8);
   max-width: 600px;
   margin: 0 auto 30px;
   font-size: 1.1rem;
}

.newsletter-form {
   display: flex;
   max-width: 500px;
   margin: 0 auto;
   position: relative;
}

.newsletter-form input {
   width: 100%;
   padding: 15px 20px;
   border: none;
   border-radius: 0 50px 50px 0;
   font-size: 1rem;
}

.newsletter-form input:focus {
   outline: none;
}

.newsletter-form button {
   background: var(--accent-color);
   color: var(--text-color);
   border: none;
   padding: 0 30px;
   border-radius: 50px 0 0 50px;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
}

.newsletter-form button:hover {
   background: var(--accent-dark);
}

/* === התאמה למובייל === */
@media (max-width: 1024px) {
   .featured-event {
       grid-template-columns: 1fr;
   }
   
   .featured-event-image {
       height: 300px;
   }
   
   .weekend-event-card {
       flex: 0 0 calc(50% - 20px);
   }
   
   .categories-grid {
       grid-template-columns: repeat(3, 1fr);
       position: relative;
       top: -33px;
   }
   .category-icon {
    margin-bottom: 0px;
   }
   .event-categories-section {
    margin: 60px 0 -25px 0;
    }
    .section-header {
        margin-bottom: 0;
    }
}
.category-card{
    background: white;
border-radius: var(--border-radius);
padding: 25px 15px;
text-align: center;
box-shadow: var(--box-shadow);
transition: var(--transition);
width: 14%;
height: 11vw;
display: flex;
justify-content: center;
align-items: center;
FLEX-DIRECTION: column;
}
.categories-grid {
    display: flex;
    gap: 0px; 
justify-content: space-around;
}
.category-card h3 {
   
}


@media (max-width: 768px) {
    .category-icon {
        margin-bottom: 0px;
    }
    .category-card{
        background: white;
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 14%;
    height: 14vw;
    display: flex
;
    justify-content: center;
    align-items: center;
    FLEX-DIRECTION: column;
    }
    .categories-grid {
        display: flex;
        gap: 0px; 
    justify-content: space-around;
    }
    .category-card h3 {
        display: none;
    }
   .hero-section {
       padding: 40px 20px;
   }
   
   .hero-section h1 {
       font-size: 2rem;
   }
   
   .hero-section p {
       font-size: 1rem;
   }
   
   .section-header {
       flex-direction: column;
       align-items: flex-start;
       gap: 10px;
   }
   
   .section-header h2 {
       font-size: 1.5rem;
   }
   
   .weekend-event-card {
       flex: 0 0 100%;
   }
   
   .slider-nav {
       display: none;
   }
   
   .featured-event-content {
       padding: 20px;
   }
   
   .featured-event-content h3 {
       font-size: 1.8rem;
   }
   

   
   .events-grid {
       grid-template-columns: 1fr;
   }
   
   .newsletter-form {
       flex-direction: column;
       gap: 10px;
   }
   
   .newsletter-form input, 
   .newsletter-form button {
       border-radius: 50px;
       width: 100%;
   }
}

@media (max-width: 480px) {
   .categories-grid {
       grid-template-columns: 1fr 1fr;
   }
   
   .newsletter-section {
       padding: 30px 20px;
   }
   
   .newsletter-section h2 {
       font-size: 1.5rem;
   }
}

/* === אנימציות === */
@keyframes fadeIn {
   from { opacity: 0; transform: translateY(20px); }
   to { opacity: 1; transform: translateY(0); }
}

.event-card, .weekend-event-card, .category-card {
   animation: fadeIn 0.5s ease-out forwards;
   animation-delay: calc(var(--animation-order) * 0.15s);
}

/* עיצוב כפתור חזרה */
.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px var(--shadow-color);
    margin-bottom: 20px;
    text-decoration: none;
}

.back-button i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px var(--shadow-color);
}

.back-button:hover i {
    transform: translateX(3px);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--shadow-color);
}

/* עיצוב כותרת חיפוש */
.search-header {
    background-image: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    /* padding: 30px 25px; */
    border-radius: 8px;
    /* margin-bottom: 25px; */
    box-shadow: 0 4px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
    text-align: right;
}

.search-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.search-header p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
}

.search-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

/* עיצוב כותרת תוצאות חיפוש */
.search-results-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    margin-right: 10px;
}

/* עיצוב קונטיינר תוצאות */
.search-results-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}

/* התאמה למובייל */
@media (max-width: 768px) {
    .search-header {
        padding: 20px 15px;
    }
    
    .search-header h1 {
        font-size: 22px;
    }
    
    .search-header p {
        font-size: 14px;
    }
    
    .back-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* עיצוב למקרה של העדר תוצאות */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.no-results i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ced4da;
}

.no-results h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 14px;
}
