@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/*
========================
GOBAL CSS START
========================
*/

body {	
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 400;    
	background: #fff;
	color: #1B2157;	
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}
input::selection,
select::selection,
textarea::selection {
    background: #ADD8E6;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #1EBE73;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #1EBE73;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

 .header-area {
	position: sticky;
	top: 0;
	z-index: 99;
    background: #fff;
}

 .header-wrapper {
    padding-block: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
.site-logo a {
    display: flex;
    max-width: 107px;
}

.navbar-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}
.navbar-menu ul li a {
    font-size: 18px;
    display: flex;
    position: relative;
}
.navbar-menu ul li a::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 110%;
    background: #1B2157;
    transition: 0.3s;
}

.navbar-menu ul li a:hover::before {
    width: 100%;
}
.navbar-menu ul li a.active {
    font-weight: 600;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
/* make sure .ronen-btn (anchor or button) has no visible frame and matches previous style */
.header-left .ronen-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font: inherit;
    cursor: pointer;
    box-shadow: none !important;
}
.header-left .ronen-btn:focus,
.header-left .ronen-btn:active {
    outline: none;
    box-shadow: none !important;
    border: none !important;
}

/* Extra forceful reset to prevent any browser / CSS library focus rectangle around the user button */
.ronen-btn,
.ronen-btn:focus,
.ronen-btn:active,
.ronen-btn:focus-visible,
.ronen-btn *,
.ronen-btn *:focus,
.ronen-btn *:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

/* Specifically handle focus-visible (modern browsers) */
.ronen-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* If any ancestor gets a focus ring, remove it when the user menu is open */
.user-menu:focus-within, .user-menu:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.header-left .ronen-btn span {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0.2px solid #1B2157 !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* small padding between initials circle and name */
.ronen-btn {
    gap: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.action-btn {
    border-radius: 8px;
    background: #0263C6;
    padding: 8px 13px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #0263C6;
}
.action-btn:hover {
    background: #1B2157;
    color: #fff;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.offcanvas-body a {
    color: #1B2157;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 20px;
    padding: 8px 15px;
}

.offcanvas-body button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1B2157;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 8px 15px;
}
.offcanvas-title img {
    max-width: 100px;
}
.offcanvas-body a.active {
    display: flex;
    width: 100%;
    background: #F2F8FD;
}

#mobileMenu {
	max-width: 200px;
}
.menu-toggler button {
	background: transparent;
	border: none;
}

/*=========== header area style end hare ========== */



      .main-area {
        background: #F3F5F7;
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: calc(100dvh - 75px);
    }

    .table-searchbar {
        display: flex;
        align-items: center;
        padding: 4px 12px;
        width: 218px;
        gap: 4px;
        border-radius: 8px;
        border: 0.5px solid #C2C4CF;
        background: #FFF;
    }
     .table-searchbar input {
        background: transparent;
        border: none;
        flex: 1;
        width: 100%;
     }
     .table-searchbar button {
        background: transparent;
        border: none;
     }

     .event-table-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.event-list-area-desktop {
    padding: 24px 32px;
    /*padding: 24px 80px;*/
    padding-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    max-width: 928px;
    margin-inline: auto;
}
.add-event-btn button {
    border: none;
    width: 63px;
    height: 32px;
    border-radius: 8px;
    background: #1B2157;
    color: #fff;
    transition: 0.3s;
}
.add-event-btn button:hover {
    background: #0263C6;
    color: #fff;
}
.event-table-header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.event-table-header h2 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}









        .controls {
            display: flex;
            gap: 15px;
            margin-bottom: 24px;
        }

        .new-button {
            background-color: #1e3a8a; 
            color: white;
            padding: 10px 18px;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: background-color 0.2s;
        }

        .new-button:hover {
            background-color: #1d4ed8; 
        }

        .search-container {
            flex-grow: 1;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 10px 10px 10px 40px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
        }

        .search-icon {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
        }

        .data-table th, .data-table td {
            padding: 8px 10px;
            text-align: right;
            color: #1B2157;
        }

        .data-table th {
            color: #BEBEC9; 
            border-bottom: 1px solid #e5e7eb;
            font-weight: 400;
        }

        .data-table tbody tr {
            border-bottom: 1px solid #e5e7eb;
            transition: background-color 0.1s;
        }

        .data-table tbody tr:hover {
            background-color: #f9fafb;
        }

        .action-cell {
            position: relative;
            text-align: center;
            width: 50px;
        }

        .action-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: background-color 0.15s;
            color: #6b7280; 
            height: 24px;
            width: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .action-button:hover {
            background-color: #e5e7eb;
        }

        .action-cell-wrapper {
            position: relative;
            display: inline-block;
        }

.action-dropdown {
    position: absolute;
    /*left: 25px;*/
    right: 26px;
    /*top: 50%;*/
    top: 240%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px;
    z-index: 10;
    min-width: 140px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
    border: 0.5px solid #C2C4CF;
}
        
        /* Show on hover */
        .action-cell-wrapper:hover .action-dropdown {
            visibility: visible;
            opacity: 1;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 4px 10px;
            cursor: pointer;
            color: #374151;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background-color 0.15s;
            border-radius: 20px;
        }

        .dropdown-item:hover {
            background-color: #F2F8FD;
        }

        .dropdown-item svg {
            margin-left: 10px; 
            width: 16px;
            height: 16px;
            stroke-width: 2;
        }

        .dropdown-item.delete-item {
            color: #dc2626;
        }
        
        .dropdown-item.delete-item:hover {
            background-color: #fee2e2;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            font-size: 14px;
            color: #6b7280;
        }

        .pagination-link {
            padding: 5px 10px;
            margin: 0 2px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.15s;
        }

        .pagination-link:hover:not(.active) {
            background-color: #e5e7eb;
        }

        .pagination-link.active {
            font-weight: 700;
            color: #1e3a8a;
            background-color: #e0e7ff;
        }

  /* event list mobile style  */

  .event-list-mb-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .event-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.event-list-top h4 {
    color: #1B2157;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.event-list-top button {
    width: 50px;
    height: 20px;
    border-radius: 8px;
    background: #1B2157;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-list-searchbar {
    width: 100%;
}

.event-list-m-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.single-event-item {
    padding: 14px 16px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 1px 5px 0 #DCE6F1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-box-top-m {
    display: flex;
    justify-content: space-between;
}
.event-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-top-right img {
    width: 16px;
}
.event-top-right h4 {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.event-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.event-top-left button {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 4px;
    border: 0.5px solid #1B2157;
    background: transparent;
    cursor: pointer;
}
.event-top-left .edit-btn {
    background: #1B2157;
}
.event-content-box-m {
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.event-content-box-m .eventer-name,
.event-content-box-m .contact-tel {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-box-m-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.event-box-m-actions button {
    padding: 4px 8px;
    border-radius: 8px;
    border: 0.5px solid #1B2157;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 5px;
}
.event-box-m-actions button.delete-btn {
    border-color: #FF0000;
    color: #FF0000;
}



/*========================
 PERSONAL AREA PAGE STYLE 
========================== */

.personal-area-wrapper {
    padding: 16px 32px;
    padding-top: 24px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 5px 0 #DCE6F1;
    max-width: 928px;
    margin-inline: auto;
}

.personal-area-wrapper .form-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.personal-area-wrapper form {
    padding-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.group-input {
    display: flex;
    gap: 16px;
}

.single-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
}

/*select {
    appearance: none;*/ /* מסיר את העיצוב ברירת מחדל */
    /*-webkit-appearance: none;*/ /* מסיר את העיצוב ברירת מחדל עבור קדמים של Webkit */
    /*-moz-appearance: none;*/ /* מסיר את העיצוב ברירת מחדל עבור Firefox */
    /*background-image: url("data:image/svg+xml;utf8,<svg fill='%235D5D5D' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path d='M143 352.3L7 216.3C-2.3 207-2.3 191 7 181.7l14.1-14.1c9.3-9.3 24.3-9.3 33.6 0L160 273.5l105.4-105.9c9.3-9.3 24.3-9.3 33.6 0l14.1 14.1c9.3 9.3 9.3 24.3 0 33.6l-136 136c-9.4 9.3-24.4 9.3-33.7 0z'/></svg>");
    background-position: right 12px center;*/ /* מיקום החץ */
    /*background-repeat: no-repeat;*/ /* מונע חזרה של החץ */
    /*padding-right: 20px;*/ /* מוודא שהפדינג לא מונע את חצי החץ */
    /*text-align: right;*/ /* מוודא טקסט מכוון ימינה */
/*}*/

input, textarea, select {
    padding: 7px 16px;
    background: #fff;
    border-radius: 8px;
    border: 0.5px solid #C2C4CF;
    width: 100%;
    /*color: #C2C4CF;*/
    color: #878792;
    transition: 0.3s;
    text-align: right;

}

input:focus, textarea:focus {
    border-color: #0263C6;
}

.input-image-card {
    border-radius: 8px;
    border: 0.5px solid #C2C4CF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.file-input-btn {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 4px;
    background: #1B2157;
}
.file-input-btn input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 0;
    cursor: pointer;
}

.logo-input img {
    max-width: 162px;
}

.bottom-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    max-width: 928px;
    margin-inline: auto;
    padding-top: 24px;
    gap: 10px;
}
.bottom-actions button {
    padding: 6px 16px;
    border-radius: 20px;
    min-width: 83px;
}
.action-btn.btn-white {
    background: #fff;
    color: #0263C6;
}
.action-btn.btn-white:hover {
    background: #0263C6;
    color: #fff;
}


/*=========== Personal area page style end hare ========== */
/*================ event page style start hare ========= */


.event-tracking-wrapper {
    max-width: 928px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    top: 74px;
    background: #F3F5F7;
    z-index: 10;
    padding-top: 16px;
    flex-wrap: wrap;
}

.tracking-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.tracking-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 5px;
}
.tracking-item span {
    color: #C2C4CF;
    font-size: 13px;
}
.tracking-item.active .icon {
    background: #0263C6 !important;
}
.tracking-item.active span {
    color: #0263C6;
}

.divider-border {
    flex: 1;
    border-bottom: 1px dashed #BEBEC9;
}
.tracking-item.finished .icon {
    background: #C2C4CF;
}
.tracking-item.finished span {
    color: #C2C4CF;
}

.event-nav {
    max-width: 928px;
    margin-inline: auto;
    padding-top: 35px;
}
.event-nav ul {
    display: flex;
    align-items: center;
    gap: 44px;
}
.event-nav ul li a {
    color: #B4B4B4;
}
.event-nav ul li a.active {
    color: #0263C6;
    text-decoration: underline;
}
.event-wrapper {
    padding: 24px 32px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 5px 0 #DCE6F1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 27px;
    max-width: 928px;
    margin-inline: auto;
}

.event-form-inner-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.event-form-inner-block h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 4px;
}
.single-input label span {
    color: #FF0000;
}


.upload-photo-input {
    max-width: 204px;
}

.upload-photo-input .photo-input-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.photo-input-card {
    border-radius: 12px;
    border: 0.5px dashed #D9D9D9;
    padding: 10px;
}
.photo-input-card > span {
    color: #BEBEC9;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.photo-input-card button {
    background: transparent;
    border: none;
    padding: 2px 8px;
    border-radius: 8px;
    background: #1B2157;
    font-size: 12px;
    color: #fff;
    position: relative;
}
.photo-input-card button input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.tracking-item .icon svg {
	width: 100%;
	height: 100%;
}
.location-map {
	height: 100%;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 105px;
}

.input-tags {
    /*height: 100%;*/
    height: 40px;
    padding: 7px 16px;
    border: 0.5px solid #C2C4CF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;

    position: relative;
}
.input-tags .tags-item {
    color: #BEBEC9;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    background: #F2F8FD;
    cursor: pointer;
}
.input-tags .show-all-btn {
    background: transparent;
    border: none;
    margin-right: auto;
    transition: 0.3s;
}

.terms-service {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.terms-service span {
    color: #BEBEC9;
    font-size: 12px;
}


.new-entry {
    display: flex;
    align-items: center;
    justify-content: end;
}
.new-entry button {
    padding: 8px 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: #1B2157;
    border: none;
    color: #fff;
    transition: 0.3s;
}
.new-entry button:hover {
    background: #0263C6;
}

.entry-gets-table .entry-table {
    margin-top: 10px;
    border-radius: 8px;
    border: 0.5px solid #C2C4CF;
    background: #FFF;
    padding: 16px;
}
.entry-table table {
    width: 100%;
}
.entry-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}
.entry-actions button {
    background: transparent;
    border: none;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}
.entry-table table th {
    color: #1B2157;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 5px;
}
.entry-table table td {
    color: #878792;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px;
}

.tracking-item.active .icon svg path ,
.tracking-item.finished .icon svg path {
	stroke: #fff !important;
}



/* entry list mobile  */

.entry-list-m {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
}

.single-entry-item-m {
    padding: 12px 8px;
    border-radius: 8px;
    border: 0.5px solid #C2C4CF;
}

.entry-info-group {
    display: flex;
    gap: 5px;
}
.single-entry-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.single-entry-info span {
    color: #BEBEC9;
    display: block;
}
.entry-list-top {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.entry-list-btm {
    padding-top: 12px;
}
.entry-list-btm h4 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.entry-list-btm .additional-info {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.entry-list-btm .additional-info span {
    color: #BEBEC9;
}

.entry-list-actions {
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}
.entry-list-actions button {
    background: transparent;
    border-radius: 8px;
    border: 0.5px solid #1B2157;
    background: #fff;
    width: 24px;
    height: 24px;
    display: flex; 
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.entry-list-actions button.delete-btn {
    background: #1B2157;
}



/* New page  */


.table-header-crd {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.infrastructure-table {
    width: 100%;
    table-layout: fixed;
}

.infrastructure-table th,
.infrastructure-table td {
    width: calc((100% - 50px) / 2);
}

.infrastructure-table th:last-child,
.infrastructure-table td:last-child {
    width: 50px;
}
.search-table-item {
	display: flex;
	align-items: end;
	gap: 16px;
}
.use-generator-checkbox {
	display: flex;
	align-items: center;
	gap: 5px;
}
.use-generator-checkbox input {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
}

.generator-blocks-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
}

.hygiene-block-bottom {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.four-item .single-input {
   max-width: calc(25% - 8px);
}
.hygiene-type-item {
    position: relative;
}
.hygiene-type-item input {
    padding-left: 30px;
}
.hygiene-type-item .three-dots-action {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.three-dots-action button {
    background: transparent;
    border: none;
}

.hygiene-action-box {
    position: absolute;
    left: 0;
    top: 0;
    padding: 7px 4px;
    border-radius: 8px;
    border: 0.5px solid #B4B4B4;
    background: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.hygiene-action-box button {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    font-size: 12px;
    color: #BEBEC9;
    padding: 2px 4px;
    width: 100%;
    transition: 0.3s;
}
.hygiene-action-box button:hover {
    background: #F2F8FD;
}
.three-dots-action:hover .hygiene-action-box {
    opacity: 1;
    visibility: visible;
}

.sizes-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
}
.single-size-item span {
    color: #BEBEC9;
    font-size: 14px;
}




/*========= Sefety And protection page ============ */

.sefety-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sefety-block h4 {
    color: #1B2157;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.checkbox-item{

    width: 220px;
}
.checkbox-items {
    display: flex;
    align-items: center;
    gap: 4px;
}
input[type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: #1B2157;
}

.new-agent button {
    background: transparent;
    border: none;
    color: #1B2157;
}

.professionals-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    padding-block: 7px;
    padding-right: 5px;
    border-radius: 8px;
    transition: 0.3s;
}
.pro-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.checkbox-item label {
	cursor: pointer;
}
.pro-actions button {
    background: transparent;
    border: none;
}
.professionals-item:hover {
    background: #F2F8FD;
}
.professionals-item:hover .pro-actions {
    visibility: visible;
    opacity: 1;
}


.accessibility-consultant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 5px;
}
.consultant-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.consultant-actions button {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 0.5px solid #1B2157;
    background: #FFF;
}
.consultant-actions button.save-btn {
    background: #1B2157;
}

.consultant-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}






.InputTagsList {
	position: absolute;
	left: 0;
	top: 100%;
	right: 0;
	padding: 5px;
	background: #fff;
	z-index: 10;
	border: 0.5px solid #C2C4CF;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
    transition: 0.3s;
}

.InputTagsList li {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 5px;
	justify-content: start;
    cursor: pointer;
    transition: 0.3s;
}
.InputTagsList.active {
	opacity: 1;
	visibility: visible;
}

.show-all-btn.active {
	transform: rotate(180deg);
}
.InputTagsList li:hover {
    background: #E1E1E1;
}



select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%235D5D5D' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path d='M143 352.3L7 216.3C-2.3 207-2.3 191 7 181.7l14.1-14.1c9.3-9.3 24.3-9.3 33.6 0L160 273.5l105.4-105.9c9.3-9.3 24.3-9.3 33.6 0l14.1 14.1c9.3 9.3 9.3 24.3 0 33.6l-136 136c-9.4 9.3-24.4 9.3-33.7 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 8px;
    padding-right: 16px;
    text-align: right;
}
/* Icon on the left of a <select> */
.select-icon-left {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%235D5D5D' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path d='M143 352.3L7 216.3C-2.3 207-2.3 191 7 181.7l14.1-14.1c9.3-9.3 24.3-9.3 33.6 0L160 273.5l105.4-105.9c9.3-9.3 24.3-9.3 33.6 0l14.1 14.1c9.3 9.3 9.3 24.3 0 33.6l-136 136c-9.4 9.3-24.4 9.3-33.7 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: left 12px center; /* place icon at left */
    background-size: 12px; /* adjust icon size if needed */
    padding-left: 40px; /* reserve space for the icon */
    padding-right: 12px; /* keep some right padding */
    /* keep existing appearance reset if needed */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: right;
}

    /* If you use RTL selects with .rtl-select and want the icon to remain visually at the start,
   flip the background-position for elements that have dir="rtl" */
    .select-icon-left[dir="rtl"],
    .rtl-select.select-icon-left {
        background-position: right 12px center;
        padding-right: 40px;
        padding-left: 12px;
        text-align: right;
    }
.single-input.manage-input2 {
	max-width: 137px;
}
.single-input.flex-m-fill.manage-input1 {
	max-width: 279px;
}
.table-searchbar input {
	padding: 1px 0;
}

.action-dropdown .dropdown-item {
    color: #1B2157;
    font-weight: 400;
}

.dropdown-item.delete-item {
    color: #FF0000;
}


/*============ Popup style start hare ======== */



.modal-header {
	padding: 16px;
	border: none;
}
.modal-footer {
	padding: 16px;
	border: none;
}
.modal-dialog {
	max-width: 864px;
}
.modal-dialog.pop-layout-two {
	max-width: 392px;
}


.popup-btn {
    border-radius: 20px;
    border: 0.5px solid #0263C6;
    background: #fff;
    width: 83px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0263C6;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: 0.3s;
}
.popup-btn:hover {
    background: #0263C6;
    color: #fff;
}
.popup-btn.btn-fill {
    background: #0263C6;
    color: #fff;
}
.popup-btn.btn-fill:hover {
    opacity: 0.8;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.popup-form .input-group {
    gap: 16px;
    flex: 1;
}

.single-checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
}
.single-checkbox input {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
    border-radius: 2px;
    border: 0.5px solid #D9D9D9;
}
.single-checkbox label {
    flex: 1;
    color: #1B2157;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}
.modal-body {
	padding: 0;
	padding-inline: 16px;
}

.modal-title {
    color: #1B2157;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.pop-btn-close {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    border-radius: 8px;
    border: 0.5px solid #D9D9D9;
    background: #FFF;
}

.popup-form textarea {
    resize: none;
}

.pop-layout-two .modal-header {
	border-bottom: 0.5px solid #B4B4B4;
    margin-bottom: 16px;
}
select.form-select.rtl-select {
    direction: rtl !important;
    text-align: right !important;

}

    select.form-select.rtl-select option {
        direction: rtl !important;
        text-align: right !important;
        
    }

.app-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: rgba(27,79,179,0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease;
    z-index: 1050;
    font-size: 14px;
}

    .app-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
@keyframes popBounce {
    0% {
        transform: translateY(-30px); /* מתחיל מעל */
        opacity: 0;
    }

    50% {
        transform: translateY(10px); /* נופל מתחת למיקום הסופי */
        opacity: 1;
    }

    /*70% {
        transform: translateY(-5px);*/ /* מעט חוזר למעלה */
    /*}*/

    100% {
        transform: translateY(0); /* נקודת סיום */
    }
}

.pop-animation {
    animation: popBounce 0.5s ease forwards;
}
.professional-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* כל שורה בטבלה */
.professionals-item {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 50px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    background: transparent !important; /* אין רקע */
    display: flex;
    flex-wrap: wrap;
}

.det {
    display: flex;
    gap: 60px;
    width: 55%;
}
.professionals-item span {
    color: #A5A5AE; /* אפור בהיר */
}

/* גם האינפוטים והטקסטים בשורת העריכה */
.professional-edit input,
.professional-edit select,
.professional-edit textarea {
    color: #A5A5AE;
}


/* פעולות עריכה */
.pro-actions,
.consultant-actions {
    justify-self: end;
}


@media (max-width: 991.98px) {
    .det {
        display: grid;
        width: 35%;
        gap: 0px;
    }
}