/* =========================================
   1. ייבוא אייקונים ופונטים
========================================= */
@import url('/CSS/uicons-regular-rounded.css');
@import url('/CSS/uicons-solid-rounded.css');

@font-face { font-family: 'Anomalia'; src: url('/fonts/anomalia-light-aaa.otf') format('opentype'); font-weight: 300; }
@font-face { font-family: 'Anomalia'; src: url('/fonts/anomalia-regular-aaa.otf') format('opentype'); font-weight: 400; }
@font-face { font-family: 'Anomalia'; src: url('/fonts/anomalia-medium-aaa.otf') format('opentype'); font-weight: 500; }
@font-face { font-family: 'Anomalia'; src: url('/fonts/anomalia-demibold-aaa.otf') format('opentype'); font-weight: 600; }
@font-face { font-family: 'Anomalia'; src: url('/fonts/anomalia-bold-aaa.otf') format('opentype'); font-weight: 700; }
@font-face { font-family: 'Anomalia Variable'; src: url('/fonts/anomalia-variable-aaa.ttf') format('truetype'); font-weight: 100 900; }
@font-face { font-family: 'Anomalia Hollow'; src: url('/fonts/anomalia-hollow-aaa.otf') format('opentype'); font-weight: normal; }

/* =========================================
   2. משתני צבעים (מתוך העיצוב)
========================================= */
:root {
  --green-general: #39b54a;
  --white: #ffffff;
  --red-protection: #991818;
  --orange-trust: #fcb446;
  --green-resp: #35b446;
  --blue-neutral: #2c6d7d;
  --gray-bg: #f4f4f4;
  --gray-border: #e0e0e0;
  --sky-light: #d3f2f5;
  --text-dark: #333333;
  --green-white: #d1edd1;
}

[icon-r]{
    font-family: 'uicons-regular-rounded';
}


[icon-s]{
    font-family: 'uicons-solid-rounded';
}



/* רוחב סרגל הגלילה */
::-webkit-scrollbar {
    width: 4px;

}

/* הרקע של הסרגל */
::-webkit-scrollbar-track {
    background: #00000000;

}

/* החלק שנגרר */
::-webkit-scrollbar-thumb {
    background: #2c6d7d;
    border-radius: 10px;
}




/* =========================================
אנימציות
========================================= */


@keyframes bamEntrance {
  /* 0%: האלמנט קטן מאד, שקוף וקצת נמוך */
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(40px) rotate(-4deg);
  }

  /* 50%: ה"בבם!" - האלמנט נכנס במהירות וגודל מעבר לגודל הטבעי שלו */
  50% {
    opacity: 1;
    transform: scale(1.12) translateY(-6px) rotate(2deg);
  }

  /* 70%: הריבאונד - ספוג את המכה בחזרה */
  70% {
    transform: scale(0.95) translateY(2px) rotate(-1deg);
  }

  /* 85%: התייצבות קלה */
  85% {
    transform: scale(1.02) translateY(0) rotate(0deg);
  }

  /* 100%: מצב רגיל וסופי */
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}



@keyframes wave {
  0% {
    transform: rotateY(0deg) skewY(0deg) scaleY(1);
  }
  50% {
    transform: rotateY(-12deg) skewY(-2deg) scaleY(0.98);
  }
  100% {
    transform: rotateY(8deg) skewY(2deg) scaleY(1.02);
  }
}


@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes coin-flip {
    0% {
        transform: perspective(400px) rotateY(0deg);
    }
    100% {
        transform: perspective(400px) rotateY(360deg);
    }
}


/* =========================================
   3. איפוס והגדרות בסיס (Desktop First)
========================================= */
*, *::before, *::after {box-sizing: border-box;margin: 0;padding: 0;}

body {
  direction: rtl;
  font-family: 'Anomalia', sans-serif !important;
  color: var(--text-dark);
  font-size: 16px; /* גודל בסיס למחשב */
  line-height: 1.5;
   /* מניעת גלילה אופקית */
  display: flex;
}

/* =========================================
   4. רכיבי המערכת המרכזיים (Layout & UI)
========================================= */

/* קונטיינרים וכרטיסיות צפות */
.card-panel {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

/* מדי התקדמות (Progress Bars) */
.progress-wrapper {
  width: 100%;
  background-color: var(--gray-bg);
  border-radius: 20px;
  height: 12px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  background-color: var(--green-general);
  height: 100%;
  border-radius: 20px;
  transition: width 0.4s ease;
}

/* כפתורי לשוניות (Tabs - ישיבה/פנימייה/הכל) */
.tabs-container {
  display: flex;
  gap: 0.5rem;
}
.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--green-general);
  background-color: transparent;
  color: var(--green-general);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background-color: var(--green-general);
  color: var(--white);
}

/* עיצוב טבלאות אירועים */
.table-events {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}
.table-events th {
  background-color: var(--sky-light);
  color: var(--blue-neutral);
  padding: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-border);
}
.table-events td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-border);
}
.table-events tr:nth-child(even) { background-color: #fafafa; }
.text-score-positive { color: var(--text-dark); font-weight: bold; }
.text-score-negative { color: var(--red-protection); font-weight: bold; }

/* מפת המסלול (גיימיפקציה) */
.map-container {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url('נתיב_לרקע_של_המפה.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}
.map-flag, .map-character {
  position: absolute;
  /* המיקומים הספציפיים יוגדרו דרך JS או קלאסים נוספים כמו top-20 left-30 */
  transform: translate(-50%, -50%); 
}

/* =========================================
   5. מחלקות עזר (Utility Classes)
========================================= */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.font-hollow { font-family: 'Anomalia Hollow', sans-serif; }
.adminLogin{
    background: none;
}






.login{



        [weblc-3n4lbn0nb]::placeholder {
            color: #2c6d7d
        }
        
        [weblc-k56oi1z16] {
            border-radius: 50px;
            background-color: #2c6d7d;
            color: #fff;
            margin-top: 12px;
            font-family: 'Anomalia';
            padding: 5px 30px 5px 30px;
            font-size: 17px;
            user-select: none;
            transition: all 0.2s linear;
            cursor: pointer;
        }

 [weblc-3n4lbn0nb] {
            width: 370px;
            height: 55px;
            outline: none;
            border: solid;
            font-family: 'Anomalia';
            border-radius: 8px;
            border-width: 3px;
            border-color: #2c6d7d;
            font-size: 19px;
            padding-right: 10px;
            color: #2c6d7d;
            font-weight: 600;
            margin-bottom: 11px;
            box-shadow: 0px 0px 20px 0px #a7eda61c;
        }
        
        [weblc-ovh3s1vx7] {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        [weblc-3n4lbn0nb]::placeholder {
            color: #2c6d7d
        }
        
        [weblc-k56oi1z16]:hover {
            border: solid;
            border-width: 3px;
            border-color: #2c6d7d;
            background-color: transparent;
            color: #2c6d7d;
        }


[weblc-qx4zb5wvu] {
    width: 100%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('/img/chanocgame.png');
    object-fit: cover;
    background-size: cover;
    background-position: bottom center;
}

[weblc-ojs5ldde1] {
    width: 96%;
    height: 93%;
    background-color: var(--white);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


[weblc-h5ofxp2l6] {
    width: 150px;
    position: absolute;
    top: 20px;
}

[weblc-0lfgcfg26] {
    color: var(--blue-neutral);
    font-size: 40px;
}

[weblc-lphnnx824] {
    color: var(--blue-neutral);
    position: absolute;
    bottom: 10px;
    font-size: 10px;
}

[weblc-y7du7g8bj] {
    width: 132px;
    position: absolute;
    right: 13px;
    bottom: 0;
}




  }
.loadingGame{

[weblc-s6j44syxl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-83pue642t] {
    color: var(--green-general);
    font-size: 30px;
}


[weblc-lyzeyxrsj] {
    width: 320px;
    height: 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    border-radius: 40px;
    border: solid;
    border-color: var(--green-general);
    border-width: 2px;
}

[weblc-qzql67d19] {
    background-color: var(--green-general);
    height: 100%;
    border-radius: 40px;
    transition: all 1.2s linear;
}

        [weblc-k87vgmxx4]{
          display: flex;
          
        }
  
        [weblc-3n4lbn0nb]::placeholder {
            color: #2c6d7d
        }
        
        [weblc-k56oi1z16] {
            border-radius: 50px;
            background-color: #2c6d7d;
            color: #fff;
            margin-top: 12px;
            font-family: 'Anomalia';
            padding: 5px 30px 5px 30px;
            font-size: 17px;
            user-select: none;
            transition: all 0.2s linear;
            cursor: pointer;
        }

 [weblc-3n4lbn0nb] {
            width: 370px;
            height: 55px;
            outline: none;
            border: solid;
            font-family: 'Anomalia';
            border-radius: 8px;
            border-width: 3px;
            border-color: #2c6d7d;
            font-size: 19px;
            padding-right: 10px;
            color: #2c6d7d;
            font-weight: 600;
            margin-bottom: 11px;
            box-shadow: 0px 0px 20px 0px #a7eda61c;
        }
        
        [weblc-ovh3s1vx7] {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        [weblc-3n4lbn0nb]::placeholder {
            color: #2c6d7d
        }
        
        [weblc-k56oi1z16]:hover {
            border: solid;
            border-width: 3px;
            border-color: #2c6d7d;
            background-color: transparent;
            color: #2c6d7d;
        }


[weblc-qx4zb5wvu] {
    width: 100%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('/img/chanocgame.png');
    object-fit: cover;
    background-size: cover;
    background-position: bottom center;
}

[weblc-ojs5ldde1] {
    width: 96%;
    height: 93%;
    background-color: #ffffffcf;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


[weblc-h5ofxp2l6] {
    width: 150px;
    position: absolute;
    bottom: 20px;
}

[weblc-0lfgcfg26] {
    color: var(--blue-neutral);
    font-size: 40px;
}

[weblc-lphnnx824] {
    color: var(--blue-neutral);
    position: absolute;
    bottom: 10px;
    font-size: 10px;
}

[weblc-y7du7g8bj] {
    width: 132px;
    position: absolute;
    right: 13px;
    bottom: 0;
}

}
.gameHome{




[weblc-e4tlzxw61] {
    width: 100vw;
    height: calc(100vw * 9 / 16);
    max-height: 100vh;
    max-width: calc(100vh * 16 / 9);
    background-image: url(/img/backHomeGameOptNoFlag_.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    position: relative;
}


[weblc-qjdg4duzf][flag="a"] {
    position: absolute;
    top: 93.6%;
    left: 30%;
    width: 9%;
    transform: translate(-50%, -100%);
}


[weblc-qjdg4duzf][flag="a1"] {
    position: absolute;
    top: 78.6%;
    left: 40.6%;
    width: 4%;
    transform: translate(-50%, -100%);
}

[weblc-qjdg4duzf][flag="a2"] {
    position: absolute;
    top: 72.4%;
    left: 53.6%;
    width: 4%;
    transform: translate(-50%, -100%);
}

[weblc-qjdg4duzf][flag="b"] {
    position: absolute;
    top: 59%;
    left: 60.9%;
    width: 4%;
    transform: translate(-50%, -100%);
}



[weblc-qjdg4duzf][flag="b1"] {
    position: absolute;
    top: 56%;
    left: 51.9%;
    width: 4%;
    transform: translate(-50%, -100%);
}

[weblc-qjdg4duzf][flag="b2"] {
    position: absolute;
    top: 52.9%;
    left: 40.5%;
    width: 4%;
    transform: translate(-50%, -100%);
}

[weblc-qjdg4duzf][flag="b3"] {
    position: absolute;
    top: 43.4%;
    left: 32.3%;
    width: 4%;
    transform: translate(-50%, -100%);
}


[weblc-qjdg4duzf][flag="c"] {
    position: absolute;
    top: 33.4%;
    left: 35.3%;
    width: 9%;
    transform: translate(-50%, -100%);
}

[weblc-qjdg4duzf][flag="f1"] {
    position: absolute;
    bottom: 46.4%;
    left: 60.6%;
    width: 3.5%;
    transform: translate(-50%, -100%);
}


[weblc-qjdg4duzf][flag="f2"] {
    position: absolute;
    bottom: 29.4%;
    left: 62.6%;
    width: 4.5%;
    transform: translate(-50%, -100%);
}


[weblc-qjdg4duzf][flag="f3"] {
   position: absolute;
   bottom: 12.4%;
   left: 32.6%;
   width: 5.6%;
   transform: translate(-50%, -100%);
}


[weblc-qwcobhdrf] {
    width: 100%;
    display: none;
}

[weblc-qjdg4duzf][flag="a"] [caracter_to_lets_go] {
    display: block;
}


[weblc-qjdg4duzf][flag="a1"] [caracter_to_right] {
    display: block;
}

[weblc-qjdg4duzf][flag="a2"] [caracter_to_right] {
    display: block;
}


[weblc-qjdg4duzf][flag="b"] [caracter_to_like] {
    display: block;
}


[weblc-qjdg4duzf][flag="b1"] [caracter_to_left] {
    display: block;
}


[weblc-qjdg4duzf][flag="b2"] [caracter_to_left] {
    display: block;
}


[weblc-qjdg4duzf][flag="b3"] [caracter_to_left] {
    display: block;
}


[weblc-qjdg4duzf][flag="c"] [caracter_to_smile] {
    display: block;
}

[weblc-qjdg4duzf][flag="f1"] [caracter_to_pointer] {
    display: block;
}


[weblc-qjdg4duzf][flag="f2"] [caracter_to_pointer] {
    display: block;
}



[weblc-qjdg4duzf][flag="f3"] [caracter_to_pointer] {
    display: block;
}


body {display: flex;flex-direction: column;align-items: flex-end;justify-content: flex-start;height: 100vh;}

img {}

[weblc-16if9lvso] {
    z-index: 81;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    aspect-ratio: 16 / 9;
    height: 100vh;
}

[weblc-tnvmyh9t4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    height: 100%;
}

[weblc-scdyx6obk] {
    position: absolute;
    transform: translate(-50%, -100%);
    top: 0%;
    left: 43%;
    font-size: 40px;
    color: var(--orange-trust);
}

[weblc-sxzd3y1hb] {
    position: absolute;
    top: 57.6%;
    left: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--orange-trust);
    font-size: 70px;
}

[weblc-t5v7b0rfl] {
    position: absolute;
    transform: translate(-50%, -100%);
    font-size: 42px;
    color: var(--white);
    left: 50%;
    top: 50%;
}



[weblc-dd19h55s3] {
    color: var(--green-general);
    display: flex;
    align-items: center;
    width: 80%;
    background-color: var(--green-general);
    justify-content: space-between;
    padding: 16px 20px 16px 20px;
    border-radius: 27px;
    cursor: pointer;
}

[weblc-wocdqnv7c] {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffd1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-rjiry81ao] {
    width: 870px;
    height: 380px;
    background-color: var(--white);
    border: solid;
    border-radius: 38px;
    border-width: 4px;
    border-color: var(--green-general);
    display: flex;
    flex-direction: row;
    position: relative;
}

[weblc-6yj0auyyd] {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 21px 0px 0px 0px;
    row-gap: 9px;
    z-index: 1;
}

[weblc-swb08128c] {
    width: 4px;
    height: 100%;
    background-color: var(--green-general);
}

[weblc-xqxjrqc0a] {
    font-size: 22px;
    color: var(--green-general);
    line-height: 0.8;
    margin-bottom: 5px;
}

[weblc-cg0mrgvwa] {
    width: 90%;
    height: 40px;
    background-color: var(--green-general);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    padding: 0px 10px 0px 20px;
    align-items: center;
    justify-content: space-between;
}

[weblc-clb6bkw7m] {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
}

[weblc-geej31zxn] {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: var(--white);
    box-shadow: 0 0 20px 0px #d3f2f5d1;
}

[weblc-dzv4v0lqr] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3px;
}

[weblc-jxgf4g90u] {
    color: var(--white);
    font-size: 14px;
    line-height: 0.8;
    font-weight: 600;
}

[weblc-ro56nz5e7] {
    color: var(--white);
    font-size: 10px;
    line-height: 0.9;
    font-weight: 100;
}

[weblc-ggvgt8yt5] {
    font-size: 10px;
    color: var(--white);
    line-height: 0.9;
    cursor: pointer;
    font-weight: 400;
}

[weblc-ct9bs5mjt] {
    position: absolute;
    top: -50px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

[weblc-fsr1kgbqa] {
    font-size: 30px;
    font-weight: 900;
    color: var(--green-general);
    mix-blend-mode: multiply;
    line-height: 0.7;
}

[weblc-sp8jz6qdr] {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: 10px;
    right: 28px;
    column-gap: 10px;
    align-items: center;
    cursor: pointer;
}

[weblc-eins3mk1t] {
    font-size: 17px;
    line-height: 0.8;
    font-weight: 700;
    color: var(--blue-neutral);
}

[weblc-o8l8bj2p3] {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-neutral);
}

[weblc-2jpbgz9qi] {
    position: absolute;
    left: -80px;
    bottom: -50px;
    width: 200px;
}

[weblc-j368zqv95][door="close"] {
}

[weblc-wocdqnv7c][door="close"] {
    display: none;
}

[weblc-as3cmu1y2] {
    display: flex;
    position: absolute;
    right: 10%;
    left: ;
    top: 80%;
    width: 240px;
    height: 70px;
    pointer-events: all !important;
    background-color: var(--white);
    border: solid;
    border-width: 1px;
    border-radius: 41px;
    border-color: var(--green-general);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 20px 0px 0px;
    box-shadow: 0px 0px 20px 0px #00000057;
    transition: all 0.2s linear;
    opacity: 1;
}

[weblc-jvv2dpygt] {
    white-space: pre-line;
    line-height: 18px;
    text-align: right;
    color: var(--green-general);
}

[weblc-dg6bvhkmr] {
    position: absolute;
    left: -37px;
    bottom: -8px;
    width: 88px;
}

[weblc-as3cmu1y2][alert="not"] {
    opacity: 0;
    pointer-events: none;
}

[weblc-as3cmu1y2][alert="new"] {
    animation: bamEntrance 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      transform-origin: center center;
      will-change: transform, opacity;
}


[weblc-k6m4f06e5] {
    display: none;
}

[flag="a"] [weblc-ybdzj1yns] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 17%;
    display: block;
}

[flag="a1"] [weblc-ybdzj1yns] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 17%;
    display: block;

}

[flag="a2"] [weblc-ybdzj1yns] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 17%;
    display: block;

}

[flag="b"] [weblc-yl3awhsl6] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 20%;
    display: block;
}

[flag="b1"] [weblc-yl3awhsl6] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 25%;
    display: block;
}

[flag="b2"] [weblc-yl3awhsl6] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 28%;
    display: block;
}

[flag="b3"] [weblc-yl3awhsl6] {
    width: 54%;
    position: absolute;
    top: -25%;
    left: 22%;
    display: block;
}

[flag="c"] [weblc-7sdtzxfag] {
    width: 34%;
    position: absolute;
    top: -23%;
    left: 35%;
    display: block;
}


[flag="f1"] [weblc-wyk0bkcye] {
    width: 74%;
    position: absolute;
    top: -43%;
    left: 10%;
    display: block;
}


[flag="f2"] [weblc-wyk0bkcye] {
    width: 74%;
    position: absolute;
    top: -43%;
    left: 12%;
    display: block;
}


[flag="f3"] [weblc-jaeaevg7f] {
    width: 74%;
    position: absolute;
    top: -35%;
    left: 12%;
    display: block;
}


[weblc-14xia4pds] {
    position: absolute;
    bottom: 48.4%;
    left: 26.6%;
    width: 9.6%;
    transform: translate(-50%, -100%);
    z-index: 0;
    perspective: 200px;
}

[weblc-8xv3zn8tb] {
    position: absolute;
    bottom: 17.4%;
    left: 69.6%;
    width: 10.6%;
    transform: translate(-50%, -100%);
    z-index: 0;
    perspective: 200px;
}

[weblc-disatshnr] {
    position: absolute;
    bottom: -18%;
    left: 25.6%;
    width: 13.6%;
    transform: translate(-50%, -100%);
    z-index: 0;
    perspective: 200px;
}



[car_flag][right] {
    width: 100%;
    transform-origin: right top;
    animation: wave 2.2s ease-in-out infinite alternate;
}

[car_flag][left] {
    width: 100%;
    transform-origin: left top;
    animation: wave 2s ease-in-out infinite alternate;
}

[div_flag_car] {
  display: inline-block;
}


[weblc-b3gw0rmoh] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-bpqlekwv7] {
    width: 736px;
    height: 430px;
    background-color: #991818e0;
    border: solid;
    border-width: 2px;
    border-color: var(--white);
    border-radius: 10px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0px 0px 0px;
    justify-content: space-evenly;
    position: relative;
}

[weblc-ji9twf8fe] {
    color: var(--white);
    font-size: 45px;
    font-weight: 700;
    text-decoration: underline;
}

[weblc-5c3d9fkh4] {
    font-size: 21px;
    white-space: pre-line;
    text-align: center;
    line-height: 1.1;
    color: var(--white);
    margin-top: 25px;
}

[weblc-id-c2o0z3cbt] {
    font-size: 120px;
    color: var(--red-protection);
    mix-blend-mode: screen;
}

[weblc-p9xovjkzm] {
    position: absolute;
    right: -61px;
    top: 6px;
    width: 130px;
}

[weblc-bpqlekwv7] [weblc-eins3mk1t] {
    color: var(--white);
}

[weblc-bpqlekwv7] [weblc-o8l8bj2p3] {
    color: var(--white);
}

[weblc-bpqlekwv7] [weblc-sp8jz6qdr]{left: 25px;}



[weblc-j368zqv95] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

[weblc-xonypxzw6] {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

[weblc-mecavajcl] {
    display: flex;
    flex-direction: row;
    width: 340px;
    height: 60px;
    background-color: var(--white);
    border-radius: 110px;
    border: solid;
    border-width: 2px;
    border-color: var(--green-general);
    box-shadow: 0px 0px 20px 0px #0000004f;
    align-items: center;
    justify-content: space-between;
    padding: 0px 28px 0px 30px;
}


[weblc-v8akpj63b] {
    display: flex;
    flex-direction: row;
    width: 200px;
    height: 60px;
    background-color: var(--white);
    border-radius: 110px;
    border: solid;
    border-width: 2px;
    border-color: var(--green-general);
    box-shadow: 0px 0px 20px 0px #0000004f;
    align-items: center;
    justify-content: space-between;
    padding: 0px 28px 0px 30px;
}


[weblc-tx2jkserz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-general);
}

[weblc-311ss89wv] {
    font-size: 26px;
}

[weblc-to8bn4mk7] {
    font-size: 13px;
    margin-top: -7px;
}

[weblc-1xvjsozxv] {
    font-size: 34px;
    font-family: 'Anomalia Hollow';
    color: var(--green-general);
}

[weblc-6riv3yzt1] {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    user-select: none;
}

[weblc-nf0t7nxfj] {
    display: flex;
    flex-direction: column;
    color: var(--green-general);
    align-items: center;
}

[weblc-hhmdi2egs] {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
}

[weblc-r7lm7085v] {
    font-size: 11px;
    margin-top: -8px;
}

[weblc-goa8615ui] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[weblc-ulzn0t6cu] {
    font-size: 15px;
    line-height: 0.7;
    color: var(--green-general);
    user-select: none;
}

[mobile]{
    display: none;
}

[weblc-8phmxnlgn] {
    font-size: 15px;
    color: var(--green-general);
    user-select: none;
}

[weblc-ipmwp3tuc] {
    width: 89%;
    height: 14px;
    position: relative;
}


#custom-tooltip {
      position: absolute;
      opacity: 0;
      pointer-events: none;
      transition: all 0.1s ease;
      background: rgba(30, 30, 30, 0.9);
      color: #fff;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: bold;
      border: 1px solid #10D039;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      white-space: nowrap;
      z-index: 1000;
      transform: translate(-50%, -120%); /* מציג את החלונית מעל העכבר */
    }

[weblc-qr8ab7bmz] {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 30px;
    top: 190px;
    row-gap: 8px;
    width: 62px;
    height: 450px;
    background-color: var(--green-general);
    border: solid;
    border-radius: 70px;
    border-width: 2px;
    border-color: var(--white);
    justify-content: space-between;
    align-items: center;
    padding: 32px 0px 20px 0px;
    z-index: 1;
}

[weblc-rvy009zo6] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    row-gap: 15px;
}

[weblc-p5id0osjh] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    transition: all 0.2s linear;
}

[weblc-wj6h1rmnz] {color: var(--white);text-align: center;font-size: 23px;cursor: pointer;}

[weblc-sztziwrtg] {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

[door="close"] [weblc-sztziwrtg] {
    display: none;
}



[weblc-xg0nkojzr] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    row-gap: 15px;
}

[door="close"] [weblc-p5id0osjh] {
    display: block !important;
}

[weblc-qr8ab7bmz][door="open"] {
    width: 240px;
    border-radius: 23px;
}

[door="open"] [weblc-p5id0osjh] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0px 30px 0px 30px;
    align-items: center;
}

[door="open"] [weblc-auebur1jd] {
    transform: rotate(
180deg);
}

[weblc-mck9z5nzt] {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50px;
    top: 20px;
    row-gap: 18px;
    align-items: flex-end;
    z-index: 1;
}

[weblc-3dwrq8gn4] {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

[weblc-bx54z0p3g] {
    position: relative;
    width: 60px;
    height: 60px;
    border: solid;
    border-width: 4px;
    border-radius: 100%;
    border-color: var(--white);
    background-color: var(--green-general);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

[weblc-bx54z0p3g][new] {
    animation: pulse-glow 0.8s ease-in-out infinite;

}

[weblc-bx54z0p3g][new] [weblc-nn63h5sq0] {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: var(--red-protection);
    width: 15px;
    height: 15px;
    display: block;
    clip-path: circle();
}


[weblc-pehuqkl9y] {
    width: 258px;
    height: 60px;
    border: cornsilk;
    border-color: var(--white);
    background-color: var(--green-general);
    border-radius: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 28px;
    padding: 0px 20px 0px 24px;
    box-shadow: 0px 0px 11px 0px #0000002e;
}

[weblc-1mxsepycw] {
    font-size: 15px;
    line-height: 0.8;
    user-select: none;
}

[weblc-fk89edi4a] {
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
}

[weblc-3pjgm91hy] {
    width: 258px;
    height: 60px;
    border: cornsilk;
    border-color: var(--white);
    background-color: var(--white);
    border-radius: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 29px;
    padding: 0px 25px 0px 14px;
    box-shadow: 0px 0px 11px 0px #0000002e;
    user-select: none;
}

[weblc-ya043elkc] {
    color: var(--green-general);
    font-size: 28px;
    line-height: 0.7;
}

[weblc-by41nonvs] {
    width: 49px;
}



[weblc-by41nonvs] {
    animation-name: coin-flip; /* שם האנימציה שהגדרנו */
    animation-duration: 5s; /* משך הזמן של סיבוב אחד מלא */
    animation-timing-function: linear; /* תנועה אחידה וחלקה */
    animation-iteration-count: infinite; /* הסיבוב יחזור על עצמו לנצח */
    user-select: none;
}












[weblc-fzrqh57n3] {
    background-color: var(--white);
    width: 100%;
    height: 50px;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 35px 0px 20px;
}



[weblc-k0vgeqimr] {
    padding-left: 10px;
    font-size: 20px;
    color: var(--green-general);
    cursor: pointer;
}

[weblc-e3a4oal3n] {
    position: absolute;
    top: 0;
    right: 0;
    width: 310px;
    height: 100%;
    background-color: #d1edd1;
    border-left: solid;
    display: flex;
    border-color: var(--green-general);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 30px 0px;
    z-index: 41;
    pointer-events: all;
}

[weblc-3c32oub94] {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    row-gap: 17px;
}

[weblc-5smcy8twd] {
    color: var(--green-general);
    font-size: 14px;
    margin-bottom: 20px;
}

[weblc-1xz1baup2] {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    row-gap: 17px;
}

[weblc-agjdjcey3] {
    width: 150px;
}

[weblc-e3a4oal3n][door="close"] {
    display: none;
}


[weblc-ryvcye1ys] {
    width: 100%;
    height: 100vh;
    position: absolute;
    bottom: 0;
    z-index: 41;
}

canvas#rangeChart_mobile {
    height: stretch;
}


[weblc-b3gw0rmoh][door="close"] {
    display: none;
}



    
}
.historyWeeks{

    
[weblc-qx4zb5wvu] {
    width: 100%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('/img/chanocgame.png');
    object-fit: cover;
    background-size: cover;
    background-position: bottom center;
}

[weblc-ojs5ldde1] {
    width: 96%;
    height: 93%;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border: solid;
    border-width: 3px;
    border-color: var(--green-general);
}


[weblc-zynxtb51m] {
    width: 40%;
    height: 100%;
    border-radius: 0px 30px 30px 0px;
    max-width: 360px;
    min-width: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 20px 50px 11px;
}

[weblc-ot0f6khu3] {
    width: 100%;
    height: 100%;
    border-radius: 30px 0px 0px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-wz4azfvqx] {
    width: 3px;
    min-width: 3px;
    height: 100%;
    background-color: var(--green-general);
}

[weblc-yxutwyyns] {
    font-size: 74px;
    color: var(--blue-neutral);
}

[weblc-wp6cnfktu] {
    color: var(--blue-neutral);
    font-size: 15px;
    font-weight: 400;
}


[weblc-unhq70hit][mobiledoor="close"] {
    display: none;
}

[weblc-j0zkils6q]:hover {
    transform: scale(1.15);
}

[weblc-sp8jz6qdr] {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 10px;
    position: absolute;
    top: 24px;
    right: 20px;
    cursor: pointer;
    align-items: center;
    z-index: 1;
}

[weblc-eins3mk1t] {
    color: var(--blue-neutral);
    font-size: 18px;
    line-height: 0.4;
}

[weblc-o8l8bj2p3] {
    color: var(--blue-neutral);
    font-size: 31px;
    line-height: 0.6;
}

[weblc-tpam97ffq] {
    position: absolute;
    bottom: -30px;
    left: -27px;
    width: 101px;
}

[weblc-rinz4vcts] {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-neutral);
}

[weblc-srm646ltx] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 10px;
    width: 100%;
    margin-top: 3px;
    padding: 0;
    
    /* מניעת גלילה אופקית מיותרת וקביעת גלילה אנכית אוטומטית */
    overflow-y: auto;
    overflow-x: hidden;
    
    /* שומר מקום מראש לפס הגלילה כדי שלא יזיז אלמנטים */
    scrollbar-gutter: stable;
    z-index: 1;
    padding-bottom: 40px;
}



[weblc-7veaxjjmk][negative] {
    background-color: var(--red-protection);
}

[weblc-pzdj04awz] {
    width: 100%;
    height: 100%;
    border-radius: 30px 0px 0px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-pzdj04awz][door="close"] {
    display: none;
}

[weblc-7veaxjjmk] {
    width: calc(100% - 3px);
    height: 45px;
    min-height: 45px;
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 12px 0px 0px;
    column-gap: 20px;
    user-select: none;
    cursor: pointer;
    min-width: calc(100% - 3px);
    position: relative;
}

[weblc-l8svas4ab] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10%;
}

[weblc-dzv4v0lqr] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 4px;
}

[weblc-jxgf4g90u] {
    color: var(--white);
    font-size: 14px;
    line-height: 0.8;
    font-weight: 600;
}

[weblc-ro56nz5e7] {
    color: var(--white);
    font-size: 11px;
    line-height: 0.9;
    font-weight: 100;
}


[weblc-7veaxjjmk][affirmative] {
    background-color: var(--green-general);
}

[weblc-v0bxrpc4k] {
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    width: 40px;
    height: 25px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    column-gap: 3px;
    position: absolute;
    left: 48px;
}

[weblc-nzu6s84ra] {
    font-size: 15px;
    line-height: 0.7;
}

[weblc-laju5ed1d] {
    line-height: 1;
    font-size: 13px;
    color: var(--orange-trust);
    display: none;
}

[weblc-v0bxrpc4k][red] * {
    color: var(--red-protection);
}

[weblc-v0bxrpc4k][orange] * {
    color: var(--orange-trust);
}




[weblc-v0bxrpc4k][green] * {
    color: var(--green-general);
}


[weblc-v0bxrpc4k][red] [red] {
   display: flex;
}

[weblc-v0bxrpc4k][orange] [orange] {
    display: flex;
}




[weblc-v0bxrpc4k][green] [green] {
    display: flex;
}


[weblc-yqoagrqhf] {
    color: var(--white);
    position: absolute;
    left: 18px;
    display: none;
}

[select] [weblc-yqoagrqhf] {
    display: block;
}


[weblc-7veaxjjmk][neutral] {
    background-color: var(--blue-neutral);
}




/* 1. הסרה מוחלטת של החצים למעלה ולמטה (הצ'וקצ'יקים) */
::-webkit-scrollbar-button,
::-webkit-scrollbar-button:single-button,
::-webkit-scrollbar-button:vertical:decrement,
::-webkit-scrollbar-button:vertical:increment,
::-webkit-scrollbar-button:horizontal:decrement,
::-webkit-scrollbar-button:horizontal:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  -webkit-appearance: none !important;
}

/* 2. הגדרת גודל ורקע לפס הגלילה */
::-webkit-scrollbar {
  width: 8px;              /* רוחב אלגנטי למניעת דחיקת תוכן */
  height: 8px;
  background: transparent;
}

/* 3. מסלול הגלילה - שקוף */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* 4. ידית הגלילה העגולה */
::-webkit-scrollbar-thumb {
  background-color: var(--blue-neutral);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* 5. אפקט Hover */
::-webkit-scrollbar-thumb:hover {
  filter: brightness(0.85);
}

/* תמיכה בדפדפנים מודרניים (Firefox / Standard) */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--blue-neutral) transparent;
}

[weblc-unhq70hit] {
    width: 100%;
    height: 100%;
    border-radius: 30px 0px 0px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 0px 0px 0px;
}

[weblc-ve7fsflry] {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

[weblc-u2r2ya403] {
    display: inline-flex;
    width: 160px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 2px solid var(--green-general);
    border-radius: 50px;
    box-shadow: 0 0 14px rgb(0 0 0 / 34%);
    color: var(--green-general);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    flex-direction: column;
    transition: all 0.2s linear;
}

[weblc-u2r2ya403][select] {
    background-color: var(--green-general);
    color: var(--white);
}

[weblc-u2r2ya403]:hover {
    transform: scale(1.03);
}

[weblc-hl9wq5idy] {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    width: 600px;
    align-items: flex-start;
    justify-content: center;
}

[weblc-ej8gzokso] {
    font-size: 15px;
    line-height: 0.7;
    color: var(--green-general);
    user-select: none;
}

[weblc-n6i1p3hac] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 89%;
}

canvas#rangeChart {
    height: 10px;
}

[weblc-bhpdvaitn] {
    display: flex;
    flex-direction: column;
    width: 90%;
}

[weblc-zqpmeyysz] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 9px;
}

[weblc-18rli809s] {
    color: var(--blue-neutral);
    font-size: 15px;
    line-height: 0.6;
    font-weight: 600;
}

[weblc-j0zkils6q] {
    color: var(--red-protection);
    font-size: 20px;
    line-height: 1.0;
    cursor: pointer;
    transition: all 0.2s linear;
}


.report-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f5f5f5;
    font-family: inherit;
    direction: rtl;
    border: 3px solid var(
    --blue-neutral);
    overflow-y: auto;
    overflow-x: hidden;
}

.report-table th {
    padding: 12px 16px;
    box-shadow: inset 0 -1px 0 var(--blue-neutral);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--blue-neutral);
    background-color: #f5f5f5;
    
    position: sticky;
    top: 0;
    z-index: 2; /* העלינו ל-2 כדי שיצוף מעל הכל */

    /* פתרון המסגרות בציפה */
    border: 1px solid var(--blue-neutral);
    background-clip: padding-box; /* מונע מהרקע לדרוס את המסגרת */
}

.report-table td {
    padding: 12px 16px;
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    background-color: f5f5f5;
    border: 1px solid var(--blue-neutral);
}

.report-table td.alert {
    color: var(--red-protection);
}

[alert] td.alert {
    color: #ff0000;
}

.table-container {
    max-height: 330px;
    height: 420px;
    overflow-y: auto;
    position: relative;
}

[weblc-nv7uudj1q] {
    width: 100%;
    height: 135px;
    background: linear-gradient(360deg, #ffffff, transparent);
    z-index: 1;
    position: sticky;
    bottom: 0;
}

[weblc-vwxlq66cg] {
    position: absolute;
    right: 0;
    width: 100%;
    bottom: 0;
    height: 100px;
    border-radius: 0px 0px 0px 30px;
    border-top: solid;
    display: flex;
    flex-direction: row;
    border-color: var(--green-general);
    border-width: 3px;
    align-items: center;
}

[weblc-q1ig94p86] {
    width: 102px;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[weblc-cmr7p38vy] {
    font-size: 40px;
    color: var(--green-general);
    display: none;
}

[weblc-v0re50fag] {
    width: 2px;
    height: 100%;
    background-color: var(--green-general);
}

[weblc-ehjgjv480] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
}

[weblc-zw4eo02qa] {
    font-size: 21px;
    color: var(--green-general);
    font-weight: 900;
    line-height: 0.9;
    display: none;
}

[weblc-2qhqypj5k] {
    font-size: 11px;
    color: var(--green-general);
    font-weight: 400;
    line-height: 1.3;
}

[mode="yes"] [weblc-zw4eo02qa] {
    display: block;
}

[weblc-twdidfyz3] {
    font-size: 21px;
    color: var(--red-protection);
    font-weight: 900;
    line-height: 0.9;
    display: none;
}

[mode="no"] [weblc-twdidfyz3] {
    display: block;
}

[mode="no"] [weblc-2qhqypj5k] {
    display: none;
}

[weblc-xw6ietmrj] {
    font-size: 40px;
    color: var(--red-protection);
    display: none;
}

[mode="yes"] [weblc-cmr7p38vy] {
    display: block;
}

[mode="no"] [weblc-xw6ietmrj] {
    display: block;
}

[mode="no"] [weblc-v0re50fag] {
    background-color: var(--red-protection);
    width: 3px;
}

[weblc-vwxlq66cg][mode="no"] {
    border-color: var(--red-protection);
}

[mode="null"] [weblc-cmr7p38vy] {
    display: block;
}

[weblc-7av69nr15] {
    font-size: 21px;
    color: var(--green-general);
    font-weight: 900;
    line-height: 0.9;
    display: none;
}

[mode="null"] [weblc-7av69nr15] {
    display: block;
}

[weblc-sp8jz6qdr]{
    display: none;
}

    
}
.eventsEdge{




[weblc-qx4zb5wvu] {
    width: 100%;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('/img/chanocgame.png');
    object-fit: cover;
    background-size: cover;
    background-position: bottom center;
}

[weblc-ojs5ldde1] {
    width: 96%;
    height: 93%;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 50px 0px 0px 0px;
    justify-content: flex-start;
    position: relative;
    border: solid;
    border-color: var(--green-general);
}




[weblc-qx4zb5wvu]:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #9918188a;
}

[weblc-vjxqpbnzt] {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue-neutral);
}

[weblc-fnzl5xh92] {
    position: absolute;
    right: 10px;
    bottom: -28px;
    width: 110px;
}

.table-container {
    width: 89%;
    overflow-x: auto;
    margin-top: 10px;
}

.report-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: inherit;
    direction: rtl;
    background-color: #f5f5f5;
    border: 2px solid var(--blue-neutral);
}

.report-table th,
.report-table td {
    padding: 12px 15px;
    text-align: center;
    border-left: 1px solid var(--blue-neutral);
    border-bottom: 1px solid var(--blue-neutral);
}

.report-table th {
    font-size: 16px;
    font-weight: bold;
    color: var(--blue-neutral);
    background-color: #f5f5f5;
}

.report-table td {
    font-size: 15px;
    color: var(--text-dark);
}

.report-table th:last-child,
.report-table td:last-child {
    border-left: none;
}

.report-table tbody tr:last-child td {
    border-bottom: none;
}

[weblc-sp8jz6qdr] {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    font-size: 23px;
    color: var(--blue-neutral);
    position: absolute;
    top: 30px;
    cursor: pointer;
    right: 30px;
}

    
    
}
.adminLogin{
    
[weblc-ono08eex6] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

body {
    margin: 0;
    direction: rtl;
    background: none;
    background-color: var(--gray-bg);
}

[weblc-peggd7w00] {
    height: 100%;
    width: 50px;
    background-color: #edfaed;
}

[weblc-erwnmqv6a] {
    height: 100%;
    width: 50px;
    background-color: #edfaed;
}

[weblc-zjhct853s] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
321deg, #e6ffe6 -6%, transparent);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 40px;
}

[weblc-kuy6vvaa5] {
    width: 200px;
}

[weblc-29w3945f3] {
    width: 160px;
    position: absolute;
    top: 30px;
}

[weblc-0lfgcfg26] {
    font-size: 50px;
    color: #2c6d7d;
    margin: 0;
}

[weblc-3n4lbn0nb] {
    font-family: inherit;
    width: 370px;
    height: 55px;
    outline: none;
    border: solid;
    border-radius: 8px;
    border-width: 4px;
    border-color: #2c6d7d;
    font-size: 19px;
    padding-right: 10px;
    color: #2c6d7d;
    font-weight: 600;
    margin-bottom: 11px;
    box-shadow: 0px 0px 20px 0px #a7eda61c;
}

[weblc-ovh3s1vx7] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

[weblc-3n4lbn0nb]::placeholder {
    color: #2c6d7d
}

[weblc-k56oi1z16] {
    border-radius: 50px;
    background-color: #2c6d7d;
    color: #fff;
    margin-top: 12px;
    width: 110px;
    cursor: pointer;
    font-size: 17px;
    user-select: none;
    transition: all 0.2s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 37px;
    justify-content: center;
}

[weblc-k56oi1z16]:hover {
    border: solid;
    border-width: 3px;
    border-color: #2c6d7d;
    background-color: transparent;
    color: #2c6d7d;
}
    

[weblc-lphnnx824] {
    color: var(--blue-neutral);
    position: absolute;
    bottom: 10px;
    font-size: 12px;
}
}
.admin{   





[weblc-ono08eex6] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

body {
    margin: 0;
    direction: rtl;
    background: none;
}

[weblc-peggd7w00] {
    height: 100%;
    width: 60px;
    background-color: #edfaed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0px 0px 0px;
    align-items: center;
    row-gap: 20px;
}

[weblc-erwnmqv6a] {height: 100%;width: 60px;background-color: #edfaed;display: flex;flex-direction: column;justify-content: flex-start;padding: 20px 0px 0px 0px;align-items: center;row-gap: 20px;}

[weblc-5atwkzes5] {
    width: 100%;
    text-align: center;
    color: var(--blue-neutral);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: -10px;
}
    
[weblc-zjhct853s] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
321deg, #e6ffe6 -6%, transparent);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 40px;
    row-gap: 20px;
}





[weblc-lphnnx824] {
    color: var(--blue-neutral);
    position: absolute;
    bottom: 10px;
    font-size: 12px;
}


[weblc-p96v2y57p] {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blue-neutral);
    cursor: pointer;
}

[weblc-p96v2y57p]:hover {
    border: solid;
    border-width: 1px;
}

[weblc-r074b9tak] {
    color: var(--blue-neutral);
    font-size: 23px;
}



/* =========================================
   מעטפת וכותרת
========================================= */
[weblc-8v3k1p6y5] {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'Anomalia', sans-serif;
  box-sizing: border-box;
  width: 100%;
  max-width: 590px;
}

[weblc-4p8t2k7m3] {
  color: var(--blue-neutral);
  font-size: 10px;
  font-weight: 300;
  margin-inline-start: 4px;
  line-height: 1;
}

[weblc-7m2q9x4b1] {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
}

/* =========================================
   1. כפתור "היום"
========================================= */
[weblc-1t9d8y2a4] {
  background-color: var(--blue-neutral);
  color: #dedede;
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  height: 42px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  display: inline-flex;
  width: 20%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

[weblc-1t9d8y2a4]:hover { opacity: 0.92; }
[weblc-1t9d8y2a4]:active { transform: scale(0.98); }

/* העיגול הלבן סביב החץ */
[weblc-9f1x8m3k2] {
  background-color: #dedede;
  color: var(--blue-neutral);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[weblc-9f1x8m3k2] i { font-size: 10px; }

/* קווי הפרדה */
[weblc-5k9b2x6t4] {
  width: 1px;
  height: 20px;
  background-color: var(--blue-neutral);
  opacity: 0.24;
  margin: 0 2px;
}

/* =========================================
   2. כפתור "בחר תאריך"
========================================= */
[weblc-1c7v8m4x9] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 42px;
  min-width: 190px;
  padding: 0 16px;
  border: 2px solid var(--blue-neutral);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--blue-neutral);
  font-size: 15px;
  font-weight: 600;
  box-sizing: border-box;
  cursor: pointer;
}

[weblc-1c7v8m4x9] i {
  font-size: 12px;
}

[weblc-2a8t4y7p1] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* הסתרת input התאריך */
#weblc-id-jb87w8jjq,
[weblc-6y4p2n9t7] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* =========================================
   3. כפתורי "קדימה" ו"אחורה" (ניווט)
========================================= */
[weblc-3n8x5p2r7] {
  background-color: var(--blue-neutral);
  color: #dedede;
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  height: 42px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  width: 26%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

[weblc-3n8x5p2r7]:hover { opacity: 0.92; }
[weblc-3n8x5p2r7]:active { transform: scale(0.98); }
[weblc-3n8x5p2r7] i { font-size: 12px; }

/* =========================================
   ימי השבוע והקו התחתון
========================================= */
[weblc-9k3m6p1t8] {
  flex: 1 1 0;
  height: 34px;
  background-color: var(--blue-neutral);
  color: var(--white);
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 100;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.15s ease;
}

[weblc-9k3m6p1t8]:hover { opacity: 0.92; }
[weblc-9k3m6p1t8]:active { transform: scale(0.98); }

/* יום פעיל / נבחר - צבע הפוך */
[weblc-9k3m6p1t8][weblc-2n6b8y3t5] {
  background-color: #ffffff00;
  color: var(--blue-neutral);
  font-weight: 300;
}

/* פס תחתון */
[weblc-7x1m8k4p9] {
  height: 1px;
  background-color: #dbe4e6; 
  width: 100%;
  margin-top: 4px;
}










/* =========================================
   מעטפת ופרופורציות (רוחב מלא וממורכז)
========================================= */
[weblc-8h2k5m9q] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Anomalia', sans-serif;
  box-sizing: border-box;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 10px;
}

/* =========================================
   תפריט סדרים (הדר)
========================================= */
[weblc-3b7v1c6x] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--blue-neutral);
  font-size: 17px;
  flex-wrap: wrap;
}

[weblc-9n4m2p8z] {
  cursor: pointer;
  transition: opacity 0.2s;
  font-weight: 100;
}

[weblc-9n4m2p8z]:hover {
  opacity: 0.8;
}

[weblc-9n4m2p8z][data-state="active"] {
  text-decoration: underline;
  text-underline-offset: 1px;
  font-weight: 100;
}

[weblc-5l1k8j3h] {
  width: 1.5px;
  height: 18px;
  background-color: var(--gray-border);
  opacity: 0.3;
}

/* =========================================
   שורות התלמידים
========================================= */
[weblc-2x9v4c7b] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 50vh;
  max-height: 50vh;
  padding-left: 10px;
  overflow: auto;
}

[weblc-6q3w8e1r] {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2.5px solid var(--blue-neutral);
  border-radius: 36px;
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.2s linear;
}

[weblc-7t2y9u4i] {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-neutral);
  width: max-content;
}

[weblc-1o5p8a3s] {
  width: 1px;
  height: 18px;
  min-width: 1px;
  margin: 0px 6px;
  background-color: var(--gray-border);
}

/* =========================================
   אחוזים (Pills)
========================================= */
[weblc-4d9f2g7h] {
  border-radius: 500px;
  padding: 1px 0;
  padding-right: 10px;
  min-width: 65px;
  text-align: right;
  color: var(--white);
  font-weight: 100;
  font-size: 14px;
}

[weblc-4d9f2g7h][data-color="green"] { background-color: var(--green-general); }
[weblc-4d9f2g7h][data-color="orange"] { background-color: var(--orange-trust); }
[weblc-4d9f2g7h][data-color="red"] { background-color: var(--red-protection); }

/* =========================================
   אייקוני סטטוס
========================================= */
[weblc-8j3k6l1z] {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 90px;
  justify-content: flex-start;
}

[weblc-5x9c2v7b] {
    font-size: 20px;cursor: pointer;position: relative;
}
[weblc-5x9c2v7b][data-status="no"]{
    display: none;
}
[weblc-5x9c2v7b][data-status="good"] { color: var(--green-general); } 
[weblc-5x9c2v7b][data-status="bad"] { color: var(--red-protection); } 
[weblc-5x9c2v7b][data-status="neutral"] { color: #d0d0d0; } /* אפור כשאין סמארטפון או אין אירוע */

/* =========================================
   תגיות דיווח
========================================= */
[weblc-3n8m1q4w] {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

[weblc-7e2r9t4y] {
  border-radius: 500px;
  width: auto;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 400;
  border: 1.5px solid transparent;
  background-color: var(--white);
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

[weblc-7e2r9t4y]:active:not([data-state="disabled"]) {
  transform: scale(0.95);
}

/* --- תגיות חיוביות --- */
[weblc-7e2r9t4y][data-type="positive"] {
  border-color: var(--green-general);
  color: var(--green-general);
}
[weblc-7e2r9t4y][data-type="positive"][data-state="active"] {
  background-color: var(--green-general);
  color: var(--white);
}

/* --- תגיות שליליות --- */
[weblc-7e2r9t4y][data-type="negative"] {
  border-color: var(--red-protection);
  color: var(--red-protection);
}
[weblc-7e2r9t4y][data-type="negative"][data-state="active"] {
  background-color: var(--red-protection);
  color: var(--white);
}

/* --- תגיות חסומות (כשהסמארטפון לא הופקד) --- */
[weblc-7e2r9t4y][data-state="disabled"] {
  border-color: #e0e0e0;
  color: #b0b0b0;
  pointer-events: none;
  background-color: var(--white);
}

/* =========================================
   כפתור הרחבה (שמאלי ביותר)
========================================= */
[weblc-1u6i3o8p] {
  flex: 1; /* דוחף את כפתור החץ שמאלה */
}

[weblc-4a9s2d7f] {
  background-color: var(--blue-neutral);
  color: var(--white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  clip-path: circle();
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, all 0.2s linear;
}

[weblc-4a9s2d7f]:hover { opacity: 0.9; }
[weblc-4a9s2d7f]:active { transform: scale(0.92); }

[weblc-4a9s2d7f] i {
  font-size: 11px;
  display: inline-block; /* מוודא שהאלמנט אינו inline רגיל */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  transform-origin: center center;
  transform: rotate(0deg);
}

[weblc-odyj2gzy9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 150px;
    column-gap: 13px;
}

[weblc-5x9c2v7b][data-status="good-good"] {
    color: var(--green-general);
}

[weblc-qo4j6o6zc] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px; /* עובי הקו */
  height: 150%; /* ארוך יותר מהאלמנט כדי שיבלוט החוצה בשני הצדדים */
  background-color: var(--white);
  
  /* ממרכז את הקו בדיוק באמצע ומסובב אותו */
  transform: translate(-50%, -50%) rotate(
325deg);
  pointer-events: none; /* כדי שהקו לא יחסום לחיצות */
  display: none;
  }



[weblc-5x9c2v7b][data-status="good-good"] [weblc-qo4j6o6zc] {
    display: block;
}

[weblc-e5r67zij4] {
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 15px 24px;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-around;
}

[weblc-mmu12rkks] {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--gray-border);
}

[weblc-v1arw90l0] {
    width: 100%;
    padding: 0px 24px;
    display: block;
    display: none;
}

[weblc-1epfdehct] {width: 100%;padding: 17px 0px;display: flex;flex-direction: row;justify-content: flex-start;align-items: flex-start;flex-wrap: wrap;gap: 11px 9px;align-content: flex-start;}

[weblc-6q3w8e1r][door="open"] [weblc-v1arw90l0] {
    display: block;
}

[weblc-6q3w8e1r][door="open"] [weblc-4a9s2d7f] i {
    transform-origin: center center; /* או top left, וכו' */
    transform: rotate(180deg);
}

    
}
.manage{   





[weblc-ono08eex6] {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

body {
    margin: 0;
    direction: rtl;
    background: none;
}

[weblc-peggd7w00] {
    height: 100%;
    width: 60px;
    background-color: #edfaed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0px 0px 0px;
    align-items: center;
    row-gap: 20px;
}

[weblc-erwnmqv6a] {height: 100%;width: 60px;background-color: #edfaed;display: flex;flex-direction: column;justify-content: flex-start;padding: 20px 0px 0px 0px;align-items: center;row-gap: 20px;}

[weblc-5atwkzes5] {
    width: 100%;
    text-align: center;
    color: var(--blue-neutral);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: -10px;
}
    
[weblc-zjhct853s] {
    width: 100%;
    height: 100%;
    background: linear-gradient(
321deg, #e6ffe6 -6%, transparent);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 40px;
    row-gap: 20px;
}





[weblc-lphnnx824] {
    color: var(--blue-neutral);
    position: absolute;
    bottom: 10px;
    font-size: 12px;
}


[weblc-p96v2y57p] {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--blue-neutral);
    cursor: pointer;
}

[weblc-p96v2y57p]:hover {
    border: solid;
    border-width: 1px;
}

[weblc-r074b9tak] {
    color: var(--blue-neutral);
    font-size: 23px;
}



/* =========================================
   מעטפת וכותרת
========================================= */
[weblc-8v3k1p6y5] {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'Anomalia', sans-serif;
  box-sizing: border-box;
  width: 100%;
  max-width: 590px;
}

[weblc-4p8t2k7m3] {
  color: var(--blue-neutral);
  font-size: 10px;
  font-weight: 300;
  margin-inline-start: 4px;
  line-height: 1;
}

[weblc-7m2q9x4b1] {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
}

/* =========================================
   1. כפתור "היום"
========================================= */
[weblc-1t9d8y2a4] {
  background-color: var(--blue-neutral);
  color: #dedede;
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  height: 42px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  display: inline-flex;
  width: 20%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

[weblc-1t9d8y2a4]:hover { opacity: 0.92; }
[weblc-1t9d8y2a4]:active { transform: scale(0.98); }

/* העיגול הלבן סביב החץ */
[weblc-9f1x8m3k2] {
  background-color: #dedede;
  color: var(--blue-neutral);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[weblc-9f1x8m3k2] i { font-size: 10px; }

/* קווי הפרדה */
[weblc-5k9b2x6t4] {
  width: 1px;
  height: 20px;
  background-color: var(--blue-neutral);
  opacity: 0.24;
  margin: 0 2px;
}

/* =========================================
   2. כפתור "בחר תאריך"
========================================= */
[weblc-1c7v8m4x9] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 42px;
  min-width: 190px;
  padding: 0 16px;
  border: 2px solid var(--blue-neutral);
  border-radius: 10px;
  background-color: var(--white);
  color: var(--blue-neutral);
  font-size: 15px;
  font-weight: 600;
  box-sizing: border-box;
  cursor: pointer;
}

[weblc-1c7v8m4x9] i {
  font-size: 12px;
}

[weblc-2a8t4y7p1] {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* הסתרת input התאריך */
#weblc-id-jb87w8jjq,
[weblc-6y4p2n9t7] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* =========================================
   3. כפתורי "קדימה" ו"אחורה" (ניווט)
========================================= */
[weblc-3n8x5p2r7] {
  background-color: var(--blue-neutral);
  color: #dedede;
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  height: 42px;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 600;
  font-family: inherit;
  width: 26%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

[weblc-3n8x5p2r7]:hover { opacity: 0.92; }
[weblc-3n8x5p2r7]:active { transform: scale(0.98); }
[weblc-3n8x5p2r7] i { font-size: 12px; }

/* =========================================
   ימי השבוע והקו התחתון
========================================= */
[weblc-9k3m6p1t8] {
  flex: 1 1 0;
  height: 34px;
  background-color: var(--blue-neutral);
  color: var(--white);
  border: 1px solid var(--blue-neutral);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 100;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.15s ease;
}

[weblc-9k3m6p1t8]:hover { opacity: 0.92; }
[weblc-9k3m6p1t8]:active { transform: scale(0.98); }

/* יום פעיל / נבחר - צבע הפוך */
[weblc-9k3m6p1t8][weblc-2n6b8y3t5] {
  background-color: #ffffff00;
  color: var(--blue-neutral);
  font-weight: 300;
}

/* פס תחתון */
[weblc-7x1m8k4p9] {
  height: 1px;
  background-color: #dbe4e6; 
  width: 100%;
  margin-top: 4px;
}










/* =========================================
   מעטפת ופרופורציות (רוחב מלא וממורכז)
========================================= */
[weblc-8h2k5m9q] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Anomalia', sans-serif;
  box-sizing: border-box;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 10px;
}

/* =========================================
   תפריט סדרים (הדר)
========================================= */
[weblc-3b7v1c6x] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--blue-neutral);
  font-size: 17px;
  flex-wrap: wrap;
}

[weblc-9n4m2p8z] {
  cursor: pointer;
  transition: opacity 0.2s;
  font-weight: 100;
}

[weblc-9n4m2p8z]:hover {
  opacity: 0.8;
}

[weblc-9n4m2p8z][data-state="active"] {
  text-decoration: underline;
  text-underline-offset: 1px;
  font-weight: 100;
}

[weblc-5l1k8j3h] {
  width: 1.5px;
  height: 18px;
  background-color: var(--gray-border);
  opacity: 0.3;
}

/* =========================================
   שורות התלמידים
========================================= */
[weblc-2x9v4c7b] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 50vh;
  max-height: 50vh;
  padding-left: 10px;
  overflow: auto;
}

[weblc-6q3w8e1r] {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2.5px solid var(--blue-neutral);
  border-radius: 36px;
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.2s linear;
}

[weblc-7t2y9u4i] {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-neutral);
  width: max-content;
}

[weblc-1o5p8a3s] {
  width: 1px;
  height: 18px;
  min-width: 1px;
  margin: 0px 6px;
  background-color: var(--gray-border);
}

/* =========================================
   אחוזים (Pills)
========================================= */
[weblc-4d9f2g7h] {
  border-radius: 500px;
  padding: 1px 0;
  padding-right: 10px;
  min-width: 65px;
  text-align: right;
  color: var(--white);
  font-weight: 100;
  font-size: 14px;
}

[weblc-4d9f2g7h][data-color="green"] { background-color: var(--green-general); }
[weblc-4d9f2g7h][data-color="orange"] { background-color: var(--orange-trust); }
[weblc-4d9f2g7h][data-color="red"] { background-color: var(--red-protection); }

/* =========================================
   אייקוני סטטוס
========================================= */
[weblc-8j3k6l1z] {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 90px;
  justify-content: flex-start;
}

[weblc-5x9c2v7b] {
    font-size: 20px;cursor: pointer;position: relative;
}
[weblc-5x9c2v7b][data-status="no"]{
    display: none;
}
[weblc-5x9c2v7b][data-status="good"] { color: var(--green-general); } 
[weblc-5x9c2v7b][data-status="bad"] { color: var(--red-protection); } 
[weblc-5x9c2v7b][data-status="neutral"] { color: #d0d0d0; } /* אפור כשאין סמארטפון או אין אירוע */

/* =========================================
   תגיות דיווח
========================================= */
[weblc-3n8m1q4w] {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

[weblc-7e2r9t4y] {
  border-radius: 500px;
  width: auto;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 400;
  border: 1.5px solid transparent;
  background-color: var(--white);
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

[weblc-7e2r9t4y]:active:not([data-state="disabled"]) {
  transform: scale(0.95);
}

/* --- תגיות חיוביות --- */
[weblc-7e2r9t4y][data-type="positive"] {
  border-color: var(--green-general);
  color: var(--green-general);
}
[weblc-7e2r9t4y][data-type="positive"][data-state="active"] {
  background-color: var(--green-general);
  color: var(--white);
}

/* --- תגיות שליליות --- */
[weblc-7e2r9t4y][data-type="negative"] {
  border-color: var(--red-protection);
  color: var(--red-protection);
}
[weblc-7e2r9t4y][data-type="negative"][data-state="active"] {
  background-color: var(--red-protection);
  color: var(--white);
}

/* --- תגיות חסומות (כשהסמארטפון לא הופקד) --- */
[weblc-7e2r9t4y][data-state="disabled"] {
  border-color: #e0e0e0;
  color: #b0b0b0;
  pointer-events: none;
  background-color: var(--white);
}

/* =========================================
   כפתור הרחבה (שמאלי ביותר)
========================================= */
[weblc-1u6i3o8p] {
  flex: 1; /* דוחף את כפתור החץ שמאלה */
}

[weblc-4a9s2d7f] {
  background-color: var(--blue-neutral);
  color: var(--white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  clip-path: circle();
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, all 0.2s linear;
}

[weblc-4a9s2d7f]:hover { opacity: 0.9; }
[weblc-4a9s2d7f]:active { transform: scale(0.92); }

[weblc-4a9s2d7f] i {
  font-size: 11px;
  display: inline-block; /* מוודא שהאלמנט אינו inline רגיל */
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  transform-origin: center center;
  transform: rotate(0deg);
}

[weblc-odyj2gzy9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 150px;
    column-gap: 13px;
}

[weblc-5x9c2v7b][data-status="good-good"] {
    color: var(--green-general);
}

[weblc-qo4j6o6zc] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px; /* עובי הקו */
  height: 150%; /* ארוך יותר מהאלמנט כדי שיבלוט החוצה בשני הצדדים */
  background-color: var(--white);
  
  /* ממרכז את הקו בדיוק באמצע ומסובב אותו */
  transform: translate(-50%, -50%) rotate(
325deg);
  pointer-events: none; /* כדי שהקו לא יחסום לחיצות */
  display: none;
  }



[weblc-5x9c2v7b][data-status="good-good"] [weblc-qo4j6o6zc] {
    display: block;
}

[weblc-e5r67zij4] {
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 15px 24px;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-around;
}

[weblc-mmu12rkks] {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--gray-border);
}

[weblc-v1arw90l0] {
    width: 100%;
    padding: 0px 24px;
    display: block;
    display: none;
}

[weblc-1epfdehct] {width: 100%;padding: 17px 0px;display: flex;flex-direction: row;justify-content: flex-start;align-items: flex-start;flex-wrap: wrap;gap: 11px 9px;align-content: flex-start;}

[weblc-6q3w8e1r][door="open"] [weblc-v1arw90l0] {
    display: block;
}

[weblc-6q3w8e1r][door="open"] [weblc-4a9s2d7f] i {
    transform-origin: center center; /* או top left, וכו' */
    transform: rotate(180deg);
}

    
}
.selectClass{


        [weblc-ono08eex6] {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: flex-start;
        }

        [weblc-peggd7w00],
        [weblc-erwnmqv6a] {
            height: 100%;
            width: 50px;
            background-color: #edfaed;
        }

        [weblc-zjhct853s] {
            width: 100%;
            height: 100%;
            background: linear-gradient(321deg, #e6ffe6 -6%, transparent);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding: 20px;
        }

        [weblc-ovh3s1vx7] {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 400px;
            width: 100%;
        }

        [weblc-0lfgcfg26] {
            font-size: 32px;
            font-family: 'Anomalia ML v2 AAA', sans-serif;
            color: #2c6d7d;
            margin: 0 0 24px 0;
            text-align: center;
        }

        .classes-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            width: 100%;
            max-height: 60vh;
            overflow-y: auto;
        }

        /* לחצן בסגנון המדויק של המערכת */
        .class-btn {
            border-radius: 50px;
            background-color: #2c6d7d;
            color: #fff;
            font-family: 'Anomalia ML v2 AAA', sans-serif;
            padding: 10px 24px;
            cursor: pointer;
            user-select: none;
            transition: all 0.2s linear;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 320px;
            box-sizing: border-box;
            border: solid 3px transparent;
        }

        .class-btn:hover {
            border-color: #2c6d7d;
            background-color: transparent;
            color: #2c6d7d;
        }

        .class-name {
            font-size: 19px;
            font-weight: 700;
        }

        .layer-name {
            font-size: 14px;
            opacity: 0.9;
        }

        #errorMessage {
            color: #ff4d4f;
            font-size: 15px;
            font-family: 'Anomalia ML v2 AAA', sans-serif;
            margin-top: 15px;
            display: none;
        }
}

/* =========================================
   6. רספונסיביות: מסכי טאבלט (עד 1024px)
========================================= */
@media (max-width: 1024px) {
  
  body {
    font-size: 15px; /* הקטנה קלה של הטקסט */
  }
  .map-container {
    min-height: 500px;
  }
  .card-panel {
    padding: 1rem;
  }



.login{

  [weblc-h5ofxp2l6] {}
  [weblc-lphnnx824] {}
  [weblc-3n4lbn0nb] {font-size: 17px;height: 44px;margin-bottom: 8px;}
  [weblc-0lfgcfg26] {
    font-size: 30px;
}
  [weblc-k56oi1z16] {
    font-size: 14px;
}
  [weblc-y7du7g8bj] {
    width: 120px;
}

  }
.loadingGame{
    
[weblc-lyzeyxrsj]{
    max-width: 330px;
}

  [weblc-3n4lbn0nb] {font-size: 17px;height: 44px;margin-bottom: 8px;}
  [weblc-0lfgcfg26] {
    font-size: 30px;
}
  [weblc-k56oi1z16] {
    font-size: 14px;
}
  [weblc-y7du7g8bj] {
    width: 120px;
}

    }
.gameHome{


    
    body{
        background-image: url(/img/backHomeGameֹ_Mobile.webp);
        background-position: bottom center;
    }

       .app_game[mobile]{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        z-index: 2;
        pointer-events: none;
    }

    .app_game[desktop]{
        display: none;
    }


    [mobile]{
        display: block;
    }
    
    [desktop]{
        display: none;
    }

    [weblc-e4tlzxw61] {
        background-image: url(/img/backHomeGameֹ_Mobile.webp);
        background-color: #d3edf2;
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: 100% auto;
        
        /* 1. שימוש ב-100% במקום 100vw מונע תזוזות של פס הגלילה */
        width: 100%;
        max-width: 550px;
        
        /* 2. נועל את יחס הגובה-רוחב בדיוק כמו התמונה */
        aspect-ratio: 9 / 16; 
        
        /* 3. חובה לבטל את חישובי הגובה הקודמים כדי שה-aspect-ratio יעבוד */
        height: auto;
        max-height: none;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    


    
[weblc-qjdg4duzf][flag="a"] {
    top: 86.6%;
    left: 15%;
    width: 15%;
}
[weblc-qjdg4duzf][flag="a1"] {
    bottom: 13%;
    left: 29%;
    width: 10%;
}
[weblc-qjdg4duzf][flag="a2"] {
    bottom: 21%;
    left: 59%;
    width: 10%;
}
[weblc-qjdg4duzf][flag="b"] {
    top: 71%;
    left: 78.9%;
    width: 11%;
}
[weblc-qjdg4duzf][flag="b1"] {
    top: 68.4%;
    left: 54.9%;
    width: 9%;
}
[weblc-qjdg4duzf][flag="b2"] {
    top: 65.9%;
    left: 28.5%;
    width: 9%;
}
[weblc-qjdg4duzf][flag="b3"] {
    top: 59.4%;
    left: 9.3%;
    width: 10%;
}
[weblc-qjdg4duzf][flag="c"] {
    top: 54.4%;
    left: 12.3%;
    width: 24%;
}
[weblc-qjdg4duzf][flag="f1"] {
    bottom: 34.9%;
    left: 74.6%;
    width: 6.5%;
}
[weblc-qjdg4duzf][flag="f2"] {
    bottom: 22.4%;
    left: 79.6%;
    width: 9.5%;
}
[weblc-qjdg4duzf][flag="f3"] {
    bottom: 11.4%;
    left: 10.2%;
    width: 11%;
}
[weblc-qwcobhdrf] {}
[weblc-qjdg4duzf][flag="a"] [caracter_to_lets_go] {}
[weblc-qjdg4duzf][flag="a1"] [caracter_to_right] {}
[weblc-qjdg4duzf][flag="a2"] [caracter_to_right] {}
[weblc-qjdg4duzf][flag="b"] [caracter_to_like] {}
[weblc-qjdg4duzf][flag="b1"] [caracter_to_left] {}
[weblc-qjdg4duzf][flag="b2"] [caracter_to_left] {}
[weblc-qjdg4duzf][flag="b3"] [caracter_to_left] {}
[weblc-qjdg4duzf][flag="c"] [caracter_to_smile] {}
[weblc-qjdg4duzf][flag="f1"] [caracter_to_pointer] {}
[weblc-qjdg4duzf][flag="f2"] [caracter_to_pointer] {}
[weblc-qjdg4duzf][flag="f3"] [caracter_to_pointer] {}
[weblc-16if9lvso] {}
[weblc-tnvmyh9t4] {}
[weblc-scdyx6obk] {}
[weblc-sxzd3y1hb] {}
[weblc-t5v7b0rfl] {}
[weblc-k6m4f06e5] {}
[flag="a"] [weblc-ybdzj1yns] {}
[flag="a1"] [weblc-ybdzj1yns] {}
[flag="a2"] [weblc-ybdzj1yns] {
    top: -39%;
    left: 24%;
}
[flag="b"] [weblc-yl3awhsl6] {}
[flag="b1"] [weblc-yl3awhsl6] {}
[flag="b2"] [weblc-yl3awhsl6] {}
[flag="b3"] [weblc-yl3awhsl6] {}
[flag="c"] [weblc-7sdtzxfag] {}
[flag="f1"] [weblc-wyk0bkcye] {}
[flag="f2"] [weblc-wyk0bkcye] {}
[flag="f3"] [weblc-jaeaevg7f] {}
[weblc-14xia4pds] {
    bottom: 37%;
    left: 11%;
    width: 19%;
}
[weblc-8xv3zn8tb] {
    bottom: 16%;
    left: 91%;
    width: 18%;
}
[weblc-disatshnr] {
    bottom: -12%;
    left: 11%;
    width: 23%;
}
[car_flag][right] {}
[car_flag][left] {}
[div_flag_car] {}
[weblc-j368zqv95] {position: absolute;width: 100vw;height: 100vh;padding-top: 40px;}
[weblc-xonypxzw6] {
    position: initial;
    pointer-events: all;
}
[weblc-mecavajcl] {
    width: 240px;
    height: 50px;
}
[weblc-v8akpj63b] {
    height: 50px;
}
[weblc-tx2jkserz] {}
[weblc-311ss89wv] {
    font-size: 17px;
}
[weblc-to8bn4mk7] {
    font-size: 10px;
    margin-top: -4px;
}
[weblc-1xvjsozxv] {
    font-size: 26px;
}
[weblc-6riv3yzt1] {
    position: relative;
    z-index: 3;
}
[weblc-nf0t7nxfj] {}
[weblc-hhmdi2egs] {
    font-size: 27px;
}
[weblc-r7lm7085v] {
    font-size: 10px;
}
[weblc-goa8615ui] {}
[weblc-ulzn0t6cu] {}
[weblc-8phmxnlgn] {}
[weblc-ipmwp3tuc] {
    width: 84%;
}
[weblc-qr8ab7bmz] {}
[weblc-rvy009zo6] {}
[weblc-p5id0osjh] {
    color: var(--green-general);
    display: flex;
    align-items: center;
    width: 80%;
    background-color: var(--green-general);
    justify-content: space-between;
    padding: 16px 20px 16px 20px;
    border-radius: 27px;
    cursor: pointer;
}
[weblc-wj6h1rmnz] {
    color: var(--white);
    line-height: 1.1;
    font-size: 15px;
}
[weblc-sztziwrtg] {
    color: var(--white);
    line-height: 0.8;
}
[door="close"] [weblc-sztziwrtg] {}
[weblc-xg0nkojzr] {}
[door="close"] [weblc-p5id0osjh] {}
[weblc-qr8ab7bmz][door="open"] {}
[door="open"] [weblc-p5id0osjh] {}
[door="open"] [weblc-auebur1jd] {}
[weblc-mck9z5nzt] {
    position: revert;
}
[weblc-3dwrq8gn4] {}
[weblc-bx54z0p3g] {
    width: 25px;
    height: 25px;
    font-size: 11px;
    background-color: var(--white);
    color: var(--green-general);
    border-color: var(--green-general);
    border-width: 2px;
}
[weblc-bx54z0p3g][new] {
    animation: pulse-glow 1s ease-in-out infinite;
}
[weblc-bx54z0p3g][new] [weblc-nn63h5sq0] {
    width: 7px;
    height: 7px;
}
[weblc-pehuqkl9y] {}
[weblc-1mxsepycw] {}
[weblc-fk89edi4a] {
    color: var(--green-general);
    font-size: 17px;
}
[weblc-3pjgm91hy] {}
[weblc-ya043elkc] {
    font-size: 22px;
    line-height: 0.7;
}
[weblc-by41nonvs] {
    width: 25px;
}
[weblc-vo064if4e] {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 40px;
}
[weblc-cl7p5wz1v]{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}


    [weblc-fzrqh57n3] {
    pointer-events: all;
}
[weblc-k0vgeqimr] {}
[weblc-e3a4oal3n] {}
[weblc-3c32oub94] {}
[weblc-5smcy8twd] {}
[weblc-1xz1baup2] {}
[weblc-agjdjcey3] {}
[weblc-e3a4oal3n][door="close"] {}
[weblc-dd19h55s3] {}
[weblc-wocdqnv7c] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
}

[weblc-rjiry81ao] {
    width: 80%;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100000 !important;
    margin-top: 40px;
}
[weblc-6yj0auyyd] {
    width: 100%;
}
[weblc-swb08128c] {
    width: 100%;
    height: 4px;
}
[weblc-xqxjrqc0a] {
    font-size: 14px;
    margin-bottom: 5px;
}
[weblc-cg0mrgvwa] {}
[weblc-clb6bkw7m] {}
[weblc-geej31zxn] {}
[weblc-dzv4v0lqr] {}
[weblc-jxgf4g90u] {}
[weblc-ro56nz5e7] {}
[weblc-ggvgt8yt5] {}
[weblc-ct9bs5mjt] {}
[weblc-fsr1kgbqa] {
}
[weblc-sp8jz6qdr] {}
[weblc-eins3mk1t] {
    font-size: 14px;
}
[weblc-o8l8bj2p3] {
    font-size: 21px;
}
[weblc-2jpbgz9qi] {position: absolute;left: -30px;bottom: -50px;width: 110px;}
[weblc-j368zqv95][door="close"] {}
[weblc-wocdqnv7c][door="close"] {}
[weblc-as3cmu1y2] {
    z-index: 1000000000;
}
[weblc-jvv2dpygt] {}
[weblc-dg6bvhkmr] {}
[weblc-as3cmu1y2][alert="not"] {}
[weblc-b3gw0rmoh] {
    height: 100vh;
    position: absolute;
    bottom: 0;
    z-index: 200;
}
[weblc-bpqlekwv7] {
    width: 82%;
    height: 65%;
}
[weblc-ji9twf8fe] {
    font-size: 32px;
}
[weblc-5c3d9fkh4] {
    width: 68%;
    font-size: 31px;
}
[weblc-id-c2o0z3cbt] {}
[weblc-p9xovjkzm] {
    display: none;
}
[weblc-bpqlekwv7] [weblc-eins3mk1t] {}
[weblc-bpqlekwv7] [weblc-o8l8bj2p3] {}
[weblc-bpqlekwv7] [weblc-sp8jz6qdr] {}


    
}
.historyWeeks{



    

[weblc-unhq70hit] {
    max-width: 100%;
}
[weblc-ve7fsflry] {
    margin-top: 10px;
}
[weblc-u2r2ya403] {
    width: 99px;
    height: 35px;
    font-size: 13px;
}
[weblc-hl9wq5idy] {
    width: 371px;
}

.report-table {
    width: 100%;
}
.report-table th {
    font-size: 13px;
    padding: 6px 5px;
}
.report-table td {
    padding: 9px 14px;
    font-size: 12px;
}
.table-container {
    max-height: 330px;
    height: 420px;
}

    
}
.eventsEdge{


       
[weblc-vjxqpbnzt] {
    font-size: 23px;
}
[weblc-fnzl5xh92] {
    width: 80px;
}

.report-table td {
    font-size: 13px;
    padding: 12px 5px;
}

[weblc-sp8jz6qdr] {
    font-size: 20px;
}
       
    }
.admin{   


[weblc-peggd7w00] {
    display: none;
}
[weblc-erwnmqv6a] {
    display: none;
}
    
[weblc-8v3k1p6y5] {
    max-width: 539px;
}
    
[weblc-1t9d8y2a4] {
    height: 34px;
    font-size: 14px;
}
    
[weblc-9f1x8m3k2] {
    width: 13px;
    height: 13px;
}
[weblc-9f1x8m3k2] i {
    font-size: 9px;
}
    
[weblc-1c7v8m4x9] {
    height: 34px;
    font-size: 14px;
}
    
#weblc-id-jb87w8jjq, [weblc-6y4p2n9t7] {
    height: 34px;
    font-size: 14px;
}
[weblc-3n8x5p2r7] {
    height: 34px;
    font-size: 14px;
}

[weblc-9k3m6p1t8] {
    font-size: 14px;
}

[weblc-3b7v1c6x] {
    font-size: 15px;
    gap: 8px;
}

[weblc-7t2y9u4i] {
    font-size: 12px;
}

[weblc-3n8m1q4w] {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 עמודות שוות */
        gap: 8px; /* מרווח אחיד בין הכפתורים */
        width: 42%;
        align-content: end;
}
[weblc-7e2r9t4y] {

  width: 100%; /* הכפתור ימלא בדיוק את התא שלו ב-Grid */
        padding: 4px 6px; /* ריווח פנימי קומפקטי כדי שהטקסט לא ייחתך */
        font-size: 12px;
        white-space: normal; /* מאפשר לטקסט ארוך כמו "איחור 10 דקות" לרדת שורה אם צריך */
  
}
    
[weblc-odyj2gzy9] {
    min-width: 145px;
}
[weblc-e5r67zij4] {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

[weblc-1epfdehct] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    align-content: end;
}




    
}
.selectClass{
    
}


}

/* =========================================
   7. רספונסיביות: מסכי סמארטפון (עד 768px)
========================================= */
@media (max-width: 768px) {


  body {
    font-size: 14px;
  }
  .d-flex-mobile-col {
    flex-direction: column;
  }
  .tabs-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tab-btn {
    flex: 1 1 auto; /* הכפתור יתפוס את המקום הפנוי בשורה */
    text-align: center;
  }
  .table-events {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .map-container {
    min-height: 400px;
  }
.gameHome{


    background-color: #d6eef4;
    

    
}

  
.login{

  

   [weblc-h5ofxp2l6] {
    width: 100px;
}
  [weblc-lphnnx824] {left: 20px;}
  [weblc-3n4lbn0nb] {font-size: 17px;height: 44px;margin-bottom: 8px;width: 90%;}
  [weblc-0lfgcfg26] {
    font-size: 30px;
}
  [weblc-k56oi1z16] {
    font-size: 14px;
}
  [weblc-y7du7g8bj] {
    width: 90px;
}
[weblc-ovh3s1vx7]{
    width: 100%;
}
  
} 
.loadingGame{

    
[weblc-lyzeyxrsj]{
    width: 80%;
}
[weblc-s6j44syxl] {
    width: 100%;
}
    
  

   [weblc-h5ofxp2l6] {
    width: 100px;
}
  [weblc-lphnnx824] {left: 20px;}
  [weblc-3n4lbn0nb] {font-size: 17px;height: 44px;margin-bottom: 8px;width: 90%;}
  [weblc-0lfgcfg26] {
    font-size: 30px;
}
  [weblc-k56oi1z16] {
    font-size: 14px;
}
  [weblc-y7du7g8bj] {
    width: 90px;
}
[weblc-ovh3s1vx7]{
    width: 100%;
}

    }
.gameHome{


    
[weblc-rjiry81ao]{
    margin-top: 0;
}

    [weblc-j368zqv95] {
    padding-top: 22px;
}
[weblc-xonypxzw6] {
    width: 100%;
    max-width: 500px;
    padding: 0px 20px 0px 20px;
}
[weblc-mecavajcl] {
    width: 60%;
    height: 50px;
    padding: 0px 18px 0px 18px;
}
[weblc-v8akpj63b] {
    width: 50%;
    padding: 0px 13px 0px 13px;
    max-width: 141px;
}
[weblc-tx2jkserz] {}
[weblc-311ss89wv] {}
[weblc-to8bn4mk7] {}
[weblc-1xvjsozxv] {}
[weblc-6riv3yzt1] {
    width: 100%;
}
[weblc-nf0t7nxfj] {}
[weblc-hhmdi2egs] {
    font-size: 31px;
}
[weblc-r7lm7085v] {
    font-size: 8px;
}
[weblc-goa8615ui] {}
[weblc-ulzn0t6cu] {}
[mobile] {}
[weblc-8phmxnlgn] {}
[weblc-ipmwp3tuc] {}
[weblc-b3gw0rmoh] {}
[weblc-bpqlekwv7] {
    padding-left: 20px;
    padding-right: 20px;
}
[weblc-ji9twf8fe] {
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
}
[weblc-5c3d9fkh4] {
    font-size: 29px;
}
[weblc-id-c2o0z3cbt] {
    font-size: 100px;
}
[weblc-p9xovjkzm] {}
[weblc-bpqlekwv7] [weblc-eins3mk1t] {}
[weblc-bpqlekwv7] [weblc-o8l8bj2p3] {}
[weblc-bpqlekwv7] [weblc-sp8jz6qdr] {}

    

    
}
.historyWeeks{

      

      
    [mobileswitch="week"] [weblc-zynxtb51m]{
        display: none;
    }

[weblc-zynxtb51m] {
    width: 100%;
    max-width: none;
}
[mobileswitch="select"] [weblc-ot0f6khu3] {
    display: none;
}
[weblc-wz4azfvqx] {
    display: none;
}

[weblc-tpam97ffq] {
    left: 3px;
    width: 84px;
}
[weblc-rinz4vcts] {
    margin-top: 30px;
}
[weblc-srm646ltx] {
    background-color: #ffffff00;
}

[weblc-7veaxjjmk] {
    width: 100%;
}
[weblc-v0bxrpc4k] {
    left: 15px;
}
[weblc-yqoagrqhf] {
    display: none !important;
}

[weblc-ve7fsflry] {
    width: 100%;
    display: flex;
    justify-content: center;
}
[weblc-u2r2ya403] {
    width: 25%;
    max-width: 100px;
}

[weblc-hl9wq5idy] {
    width: 290px;
}

[weblc-18rli809s] {
    font-size: 13px;
}
[weblc-j0zkils6q] {
    font-size: 21px;
    position: absolute;
    top: 25px;
    left: 20px;
}

.report-table td {
    padding: 5px 9px;
}

[weblc-vwxlq66cg] {
    height: 68px;
}
[weblc-q1ig94p86] {
    width: 72px;
}
[weblc-cmr7p38vy] {
    font-size: 26px;
}


[weblc-sp8jz6qdr]{
    display: flex;
}

      
      
}  
.eventsEdge{


[weblc-vjxqpbnzt] {
    font-size: 16px;
    margin-top: 20px;
}
[weblc-fnzl5xh92] {
    width: 50px;
}
.table-container {
    height: 470px;
    width: 90%;
}

.report-table th {
    font-size: 11px;
    padding: 7px 2px;
}
.report-table td {
    font-size: 12px;
}
           
           
    }
.adminLogin{   


[weblc-29w3945f3] {
    width: 130px;
}
[weblc-0lfgcfg26] {
    font-size: 36px;
}
[weblc-3n4lbn0nb] {
    width: 280px;
    height: 44px;
    font-size: 15px;
    margin-bottom: 6px;
}

    
}
.admin{   


[weblc-ono08eex6] {
    height: fit-content;
    display: flex;
    flex-direction: column;
}
body {
    background: linear-gradient(
321deg, #e6ffe6 -6%, transparent);
    height: auto;
}

[weblc-zjhct853s] {padding-bottom: 90px;height: max-content;}
[weblc-lphnnx824] {
    display: none;
}

[weblc-r074b9tak] {
    font-size: 19px;
}
[weblc-8v3k1p6y5] {max-width: 379px;width: 82%;}
[weblc-7m2q9x4b1] {display: flex;justify-content: center;width: 100%;flex-wrap: wrap;flex-direction: row;border-top: solid;padding-top: 10px;border-width: 1px;border-color: var(--gray-border);}
[weblc-1t9d8y2a4] {
    height: 34px;
    font-size: 14px;
    padding: 0px 7px;
    width: 47%;
}

[weblc-5k9b2x6t4] {
    display: none;
}
[weblc-1c7v8m4x9] {
    height: 34px;
    font-size: 12px;
    min-width: 46%;
    padding: 0px 7px;
}
[weblc-1c7v8m4x9] i {
    font-size: 9px;
}
[weblc-2a8t4y7p1] {}
#weblc-id-jb87w8jjq, [weblc-6y4p2n9t7] {
    font-size: 9px;
}
[weblc-3n8x5p2r7] {
    height: 34px;
    font-size: 12px;
    padding: 0px 7px;
    width: 47%;
}

[weblc-3n8x5p2r7] i {
    font-size: 9px;
}
[weblc-9k3m6p1t8] {
    font-size: 13px;
    height: 29px;
    flex: none;
    width: 30%;
}

[weblc-8h2k5m9q] {
    width: 100%;
}
[weblc-3b7v1c6x] {
    font-size: 16px;
    gap: 5px 10px;
}
[weblc-2x9v4c7b] {
    overflow: unset;
    height: auto;
    max-height: fit-content;
}
[weblc-6q3w8e1r] {}
[weblc-7t2y9u4i] {}
[weblc-1o5p8a3s] {
    display: none;
}
[weblc-4d9f2g7h] {
    margin-right: 30px;
    min-width: 58px;
}

[weblc-5x9c2v7b] {
    font-size: 17px;
}

[weblc-3n8m1q4w] {
    width: 100%;
    margin: 12px 0px;
    border-top: solid;
    padding-top: 10px;
    border-width: 1px;
    border-color: var(--gray-border);
}

[weblc-4a9s2d7f] {
    margin-right: auto;
    margin-left: 0;
}

[weblc-odyj2gzy9] {
    min-width: 119px;
}

[weblc-e5r67zij4] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    
}
.selectClass{
    
}

    
    
}





