@media screen and (min-width: 1200px) {
    .container {
        max-width: 1150px;
    }
}


/*
====================================
Large Screen - Others
====================================
*/
@media screen and (min-width: 1200px) and (max-width: 1400px) {
	
}
	

/*
====================================
Medium Screen - Others
====================================
*/
@media screen and (min-width: 992px) and (max-width: 1199px) {

}

/*
====================================
Small Screen - Tablate
====================================
*/
@media screen and (min-width: 768px) and (max-width: 991px) {

    .new-entry button {
        border-radius: 40px;
        background: #0263C6;
    }

      .professionals-item:has(input:checked) .pro-actions {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .professionals-item:has(input:checked) {
        background: #F2F8FD;
    }

    .modal-dialog {
        max-width: 750px;
    }

    .popup-form textarea {
        min-height: 72px;
    }
}
/*
====================================
Small Screen - Mobile
====================================
*/
@media screen and (max-width: 767px) {

    .main-area {
        padding-top: 20px;
    }

    .group-input {
        flex-direction: column;
    }

    .logo-input img {
        max-width: 103px;
    }
    .group-input.flex-row.row-two {
        flex-wrap: wrap;
    }

    .group-input.flex-row.row-two .single-input {
        flex: 47%;
        /*width: 48%;*/
        width:fit-content;
    }

    .single-input.flex-m-fill {
        flex: 1 1 auto;
    }
    .tracking-item .icon {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

     .upload-photo-input {
        max-width: 100%;
    }

    .photo-input-card {
        padding: 15px;
    }


    .professionals-item:has(input:checked) .pro-actions {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .accessibility-consultant {
        margin-top: 20px;
    }
    .professionals-item {
        padding-left: 5px;
    }

    .pro-actions button {
        border-radius: 4px;
        border: 0.5px solid #1B2157;
        background: #fff;
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
    }
	.pro-actions .delete-btn {
        display: none;
    }

    .group-input.flex-row.flex-m-wrap {
        flex-wrap: wrap;
    }
    .single-input.flex-m-fill.manage-input1 {
        max-width: 100%;
    }
    .single-input.manage-input2 {
        max-width: 50%;
    }

    .popup-form textarea {
        min-height: 72px;
    }
}

@media screen and (max-width: 575px) {

    .tracking-item .icon {
        width: 20px;
        height: 20px;
        padding: 3px;
    }
    .tracking-item span {
        color: #C2C4CF;
        font-size: 10px;
    }

    .event-tracking-wrapper {
        gap: 3px;
    }

    .event-wrapper {
        padding: 20px 12px;
    }
   .input-tags .tags-item {
        font-size: 12px;
        padding: 2px 3px;
    }
	.event-nav ul {
        gap: 25px;
    }

}

/* Styles for SingleEnumSelect component */
.single-enum-select {
    position: relative;
    display: inline-block;
    font-family: inherit;
}
/* Ensure toggle matches other inputs (height, border color, radius) and caret on left */
.single-enum-select .ses-toggle.form-select {
    box-sizing: border-box;
    height: 38px; /* match form inputs */
    padding: 8px 12px;
    border-radius: 8px; /* match other inputs */
    border: 0.5px solid #C2C4CF; /* same border color */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* caret at left */
    gap: 8px;
    flex-direction:row-reverse;
}

/* hide any existing pseudo icon added by .select-icon-left in other styles */
.single-enum-select .ses-toggle.select-icon-left::after,
.single-enum-select .ses-toggle.select-icon-left::before {
    display: none !important;
    content: none !important;
}

/* caret on the left */
.single-enum-select .ses-caret {
    order: 0;
    margin-left: 8px;
    margin-right: 0;
    color: #9AA0B3;
    font-size: 14px;
}

/* selected text remain right-aligned like other inputs (RTL) */
    .single-enum-select .ses-selected {
        order: 1;
        flex: 1 1 auto;
        text-align: right;
        color: #878792;
        padding-right: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Ensure dropdown list aligns under input and has similar width */
.single-enum-select .ses-list {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 12px;
    width: inherit;
    min-width: 100%;
    box-shadow: 0 6px 18px rgba(27,33,87,0.08);
    border: 0.5px solid #C2C4CF; /* add border for options */
    padding: 8px 0;
    z-index: 1200;
}

/* make sure open dropdown overlays other elements, not push them */
.single-enum-select.ses-open {
    z-index: 1300; /* elevate wrapper */
}
.single-enum-select.ses-open .ses-list {
    z-index: 1400; /* elevate dropdown */
}

.single-enum-select .ses-item {
    padding: 5px 16px;
    cursor: pointer;
    color: #1B2157;
    text-align: right;
}
    .single-enum-select .ses-item:hover,
    .single-enum-select .ses-item.selected {
        background: #F2F8FD;
        border-radius: 10px;
    }

.single-enum-select .ses-item + .ses-item {
    margin-top: 4px;
}