@font-face {
    font-family: 'Chillax';
    font-weight: 500;
    src: url('../font/Chillax-Medium.eot');
    src: url('../font/Chillax-Medium.eot') format('embedded-opentype'),
        url('../font/Chillax-Medium.woff2') format('woff2'),
        url('../font/Chillax-Medium.woff') format('woff'),
        url('../font/Chillax-Medium.ttf') format('truetype'),
        url('../font/Chillax-Medium.svg') format('svg');

    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chillax';
    font-weight: normal;
    src: url('../font/Chillax-Regular.eot');
    src: url('../font/Chillax-Regular.eot') format('embedded-opentype'),
        url('../font/Chillax-Regular.woff2') format('woff2'),
        url('../font/Chillax-Regular.woff') format('woff'),
        url('../font/Chillax-Regular.ttf') format('truetype'),
        url('../font/Chillax-Regular.svg') format('svg');

    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-weight: 600;
    src: url('../font/Inter-SemiBold.eot');
    src: url('../font/Inter-SemiBold.eot') format('embedded-opentype'),
        url('../font/Inter-SemiBold.woff2') format('woff2'),
        url('../font/Inter-SemiBold.woff') format('woff'),
        url('../font/Inter-SemiBold.ttf') format('truetype'),
        url('../font/Inter-SemiBold.svg') format('svg');

    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Chillax';
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}


.container {
    display: flex;
}

/* Sidebar */

.sidebar {
    width: 276px;
    background: #e8ecef;
    height: auto;
    min-height: 100vh;
    padding: 32px 16px 42px 16px;
    box-sizing: border-box;
    position: relative;
}



.toggle-btn {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sidebar.collapsed .toggle-btn {
    transform: rotate(180deg);
    /* Rotate arrow on collapse */
}

/* Sidebar collapse */

.sidebar.collapsed {
    width: 80px;
    transition: width 0.3s ease;
}

/* Dropdown by default hidden */
.dropdown-content {
    display: none;
    padding-left: 15px;
    position: relative;
}

.dropdown-content::after {
    content: '';
    width: 1px;
    height: 76%;
    background-color: #C3C6C9;
    position: absolute;
    left: 19px;
    top: -16px;
}

.sidebar ul li.sub::after {
    content: "";
    position: absolute;
    left: -13px;
    top: 0;
    width: 12px;
    height: 50%;
    border-left: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
    border-radius: 0 0 0 20px;
}

/* Show dropdown when toggled */
.dropdown-content li {
    padding: 8px 0;
}

.sidebar h3 {
    font-size: 18px;
    font-family: 'Chillax';
    font-weight: 500;
}

.admin-portal-name p {
    font-size: 14px;
    font-weight: 500;
    color: #7C7C7C;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 13px 20px 13px 44px;
    margin-bottom: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #4B4B4B;
}

.sidebar ul li.active {
    color: #fff;
}

.sidebar ul li.active,
.sidebar ul li:hover {
    background: #ee0f37;
    color: white;
}

.dropdown-event-btn {
    color: #FFF !important;
}

.sidebar ul li.sub {
    margin-left: 32px;
    position: relative;
}

.sidebar .bottom-links {
    position: absolute;
    bottom: 42px;
    left: 16px;
}

.sidebar.collapsed .admin-portal-img,
.sidebar.collapsed .admin-portal-name,
.sidebar.collapsed .search-box,
.sidebar.collapsed ul,
.sidebar.collapsed .bottom-links {
    display: none;
}

.sidebar.collapsed .sidebar-right-arrow img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sidebar-main-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
}

/* Main content */
.main {
    flex: 1;
    padding: 32px;
    background: #fff;
    border-radius: 12px 12px 0 0px;
    margin-left: 16px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header h1 {
    font-size: 32px;
    font-family: 'Chillax';
    font-weight: 500;
}

.main-header p {
    font-family: 'Chillax';
    font-weight: 500;
    font-size: 16px;
    color: #7C7C7C;
}

.add-btn {
    background: #ee0f37;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14.5px 16px 14.5px 41.6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    position: relative;
}

.add-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 12px;
    top: 12px;
    background-image: url(../image/plus.svg);
    background-repeat: no-repeat;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 20px;
    background: white;
    border-radius: 8px 8px 0 0;
    overflow: scroll;
    border-left: 1px solid #E9E9E9;
    border-right: 1px solid #E9E9E9;
}

td {
    max-width: 150px;
    padding: 19.5px 14px;
    text-align: left;
    border-bottom: 1px solid #E9E9E9;
    border-top: unset;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

td:last-child {
    overflow: visible;
}

th {
    max-width: 150px;
    background: #F8F8F8;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    padding: 11.75px 14px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

/* .tabel-cell-two {
    width: 320px;
}

.tabel-cell-three {
    width: 100px;
}

.tabel-cell-seven {
    width: 140px;
}

.tabel-cell-six {
    width: 110px;
}

.tabel-cell-five {
    width: 150px;
} */

.click-img-text {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .click-img-text a {
    color: #000;
} */

.click-img-text img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.event-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.invite-btn,.share-btn {
    background: #FFEFF2;
    border-radius: 20px;
    padding: 2.5px 10px 2.5px 31.5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    border: 0.8px solid #F4BEC8;
}

.invite-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    background-image: url(../image/invite-icon.svg);
    background-repeat: no-repeat;
    left: 10px;
    top: 4px;
}
.share-btn::before {
   
    background-image: url(../image/share-icon.svg);
        background-size: 16px 16px;
}

.actions i {
    margin-right: 10px;
    color: #999;
    cursor: pointer;
}

.pagination {
    padding-top: 37px;
    text-align: center;
    padding-bottom: 20px;
}

.pagination span {
    padding: 7px 11.8px;
    margin: 0 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;

}

.page-first-btn {
    color: #7C7C7C;
    font-weight: 500;
}

.page-last-btn {
    color: #EE0F37;
    font-weight: 500;
}

.pagination .active {
    color: #ee0f37;
    font-family: 'Inter';
    font-weight: 600;
    border: 1px solid #ee0f37;
}

.dropdown {
    background: #ee0f37;
    margin-bottom: 5px;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown .arrow {
    font-size: 12px;
    margin-left: 10px;
}

.dropdown-content {
    display: none;
    background: transparent;
    padding-left: 20px;
}

.dropdown-content .sub {
    color: #7C7C7C;
    border-radius: 20px;
    margin: 5px 0;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-content .sub:hover {
    background: #fff;
    color: #EE0F37;
}

.dropdown-content .active-sub {
    background: #fff;
    color: #ee0f37;
}

.search-box input[type="search"] {
    width: 100%;
    max-width: 244px;
    padding: 11.5px 15px 11.5px 34px;
    border: none;
    border-radius: 6px;
    outline: none;
    background-color: white;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-box::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 12px;
    background-image: url(../image/search-icon.svg);
    background-repeat: no-repeat;
}


/*  */
.admin-details-mains {
    width: 100%;
    background-color: #fafafa;
}

.admin-details-inner {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 33px;
    padding-bottom: 18px;
}

.admin-details-inner-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 32px;
    width: 100%;
    max-width: 271px;
}

.bail-icon-div a {
    display: inline-block;
    position: relative;
}

.bail-icon-div a::before {
    content: '';
    width: 1px;
    height: 24px;
    position: absolute;
    top: 4px;
    right: -16px;
    background-color: #DDD7D7;
}

.bail-icon-div a img,
.profile-picture img {
    width: 100%;
    height: auto;
}

.profile-details {
    display: flex;
    align-items: center;
}

.profile-designation p {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #000;
}

.profile-designation span {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #7C7C7C;
}

.profile-picture {
    margin-right: 12px;
}



.table-row-icon {
    position: relative;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-row-icon::after {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    background-image: url(../image/i-icon.svg);
    margin-left: 6px
}

.active-pancil {
    position: relative;
    padding-right: 36px;
}

.active-pancil::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    background-image: url(../image/pan-icon.svg);
    right: 6px;
    top: 23px;
    margin-left: 8px;
    background-repeat: no-repeat;
}

.dropdown-event-btn,
.dropdown-overview-btn,
.translation-btn,
.doc-translation-btn,
.bottom-help-center a,
.bottom-setting a,
.bottom-log-out a,
.search-box {
    position: relative;
}

/* .bottom-help-center p a,
.bottom-setting p a,
.bottom-log-out p a{
position: relative;
} */

.dropdown-overview-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/pentagone-icon.svg);
    position: absolute;
    left: 15px;
    top: 11px;
}

.dropdown-event-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/event-icon.svg);
    position: absolute;
    left: 12px;
    top: 11px;
}

.dropdown-event-btn::before {
    content: '';
    width: 11px;
    height: 6px;
    background-image: url(../image/droup-up-icon.svg);
    position: absolute;
    right: 18px;
    top: 18px;
    background-repeat: no-repeat;
}

.translation-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/language-icon.svg);
    position: absolute;
    left: 15px;
    top: 11px;
}

.doc-translation-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/doc-icon.svg);
    position: absolute;
    left: 15px;
    top: 11px;
}

.bottom-help-center a::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/heaphon-icon.svg);
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
}

.bottom-setting a::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/setting-icon.svg);
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
}

.bottom-log-out a::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../image/log-out-icon.svg);
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
}

.bottom-links p a {
    color: #707070;
    padding: 10px 10px 10px 30px;
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.search-box {
    margin-bottom: 24px;
}


/* second popup css */

/* .popup {
    background: #fff;
    width: 600px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
  } */

.popup-two h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.popup-two .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.popup-two label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 6px;
}

.popup-two input,
.popup-two select,
.popup-two textarea {
    width: 100%;
    padding: 12.5px;
    border: 1px solid #00000029;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    /* resize: none; */
    font-weight: 500;
    color: #000 !important;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
}

input,
select,
textarea::placeholder {
    opacity: 1;
    color: #7C7C7C !important;
}

/* .popup-two .flex-row input {
    max-width: 350px;
} */

.popup-two #event-status {
    background: transparent;
    color: #7C7C7C;
}

.popup-two .upload-box {
    border: 2px dashed #ccc;
    background: #f8f8f8;
    padding: 55.5px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 24px;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.upload-box input {
    border: unset;
    /* padding: 0; */
    text-align: center;
    display: flex;
}

.upload-box input::placeholder {
    display: none;
}

.popup-two .upload-box span {
    color: red;
    cursor: pointer;
    font-weight: 500;
}

.popup-two .flex-row {
    display: flex;
       gap: 0 24px;
}

.popup-two .flex-row>div {
    flex: 1;
}

.popup-two .flex-row .phone-group {
    display: flex;
    gap: 8px;
}

.popup-two .switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popup-two .switch input[type="checkbox"] {
    width: 41.14px;
    height: 20px;
    appearance: none;
    background: #ED0F361A;
    border-radius: 20px;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    border: unset;
}

.popup-two .switch input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #EE0F37;
    border-radius: 50%;
    top: 6px;
    left: 5px;
    transition: 0.3s;
}

.popup-two .switch input[type="checkbox"]:checked {
    background: #EE0F37;
    /* Active background */
}

.popup-two .switch input[type="checkbox"]:checked::before {
    transform: translateX(20px);
    background: #FFFFFF;
    /* Active thumb */
}

/* x */

.popup-two .switch input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.popup-two .create-btn {
    background: #EE0F37;
    color: white;
    border: none;
    width: 100%;
    max-width: 150px;
    padding: 10.5px 14.1px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    float: right;
}

.popup-two .cancel-btn {
    background: #515151;
    color: white;
    border: none;
    width: 100%;
    max-width: 150px;
    padding: 10.5px 14.1px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    float: right;
}



.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 21px;
    border-radius: 12px;
    width: 100%;
    max-width: 801px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-two {
    padding: 11px;
}

/* Close Button */
.close {
    float: right;
    font-size: 16px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    padding-bottom: 16px;
    border-bottom: 1px solid #00000029;
}

.upload-box-main {
    padding-top: 13px;
}

.upload-img-text {
    font-weight: 500;
    color: #000 !important;
}

.switch-inner-div input {
    margin-right: 12px;
    margin-bottom: 0;
}

.switch-inner-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch-checkbox {
    width: 41.14px;
    height: 20px;
    appearance: none;
    background: #e0e0e0;
    /* Default gray */
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
    border: none;
}

.switch-checkbox::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #7c7c7c;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: 0.3s;
}

.switch-checkbox:checked {
    background: #EE0F37;
}

.switch-checkbox:checked::before {
    background: #fff;
    transform: translateX(20px);
}

.switch-inner-div label {
    color: #7C7C7C;
    font-weight: 500;
    margin-bottom: 0;
}







.date-input {
    position: relative;
}

.date-input::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    background: url('../image/calender.svg');
    transition: background-position 0.3s ease;
    right: 14px;
    top: 38px;
}

/* Hide the browser's default calendar picker */
.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Animate the icon on hover */
.date-input:hover {
    background-position: 14px center;
}

.date-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-wrapper::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../image/calender.svg') no-repeat center center;
    background-size: cover;
    pointer-events: none;
    opacity: 1;
    z-index: 1;
}

.date-input {
    padding-left: 40px;
    /* Make space for the icon */
}



.create-btn {
    background-color: #E63946;
    /* Red background */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

/* Hover effect */
.create-btn:hover {
    background-color: #d62828;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slight zoom */
}

/* Fancy ripple inside the button */
.create-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
}

/* When hover, ripple expands */
.create-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Make text above ripple */
.create-btn {
    z-index: 1;
}

.last-dots {
    display: inline-block;
    max-width: 20px;
}

.last-dots img {
    padding-left: 5px;
    position: relative;
    top: 5px;
    width: 100%;
    height: 20px;
}




.invite-popup-btn {
    padding: 12px 30px;
    background: #e3001b;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 100px auto;
    display: block;
}

.invite-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.invite-popup-overlay.show {
    display: block;
    /* Or block, based on your layout */
}

.invite-popup-content {
    background: #F8F8F8;
    padding: 50px;
    width: 100%;
    max-width: 370px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.invite-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.invite-popup-title {
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.invite-popup-subtitle {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 32px;
}

.invite-popup-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.invite-popup-checkmark {
    padding-bottom: 26px;
}

.invite-popup-option {
    width: 100%;
    max-width: 274px;
    padding: 24px 10px 26px 10px;
    border: 2px solid #eee;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
    background: #fff;
}

.invite-popup-option.active {
    border-color: #EE0F37;
}

/* .invite-popup-checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e3001b;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  } */

.invite-popup-icon img {
    width: 100%;
    margin-bottom: 0;
}

.invite-popup-icon {
    background: #EE0F37;
    width: 100%;
    max-width: 72px;
    min-height: 72px;
    margin: auto;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.invite-popup-icon-second {
    background: #EE0F371C;
}

.invite-popup-icon img {
    width: 22.20px;
    height: auto;
}

.invite-popup-icon-second img {
    width: 100%;
    max-width: 57px;
    height: auto;
}

.invite-popup-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.invite-popup-next-btn {
    background: #EE0F37;
    color: #fff;
    border: none;
    width: 100%;
    padding: 9px 12px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.invite-popup-next-btn:hover {
    background: #c60018;
}

/* ***************************** */

/* Popup main container */
.invite-event-popup {
    width: 100%;
    height: 100vh;
    background: #fff;
    border-radius: 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
}



/* Header */
.invite-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #0000001F;
    margin-bottom: 15px;
}

.invite-event-header h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.invite-event-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Body */
.invite-event-body {
    width: 100%;
    max-width: 480px;  
    margin: 30px auto;  
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px 36px 20px 36px;
    border-radius: 16px;
}

.invite-label {
    font-size: 14px;
    font-weight: 500;
    color: #7C7C7C;
    margin-bottom: 8px;
}

/* Input + Button wrapper */
.invite-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 8px 18px 8px 16px;
	margin-bottom: 0;
}

.invite-input-wrapper-first {
    background: #F8F8F8;
}

.invite-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    color: #000 !important;
}

.copy-btn,
.send-btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn img {
    width: 100%;
    max-width: 36px;
    height: auto;
}

/* Invite Code Input */
.invite-code-input {
    background: #f7f7f7;
    color: #000 !important;
    border: none;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    margin-bottom: 10px;
}

/* QR Section */
.qr-code-container {
    background: #F8F8F8;
    padding: 20px 20px 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.qr-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
}

.qr-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    max-width: 375px;
    margin: auto;
    border-radius: 10px;
    padding: 8px 8px 8px 16px;
}

.qr-download span {
    font-size: 14px;
    color: #000000;
}

.download-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    max-height: 36px;
}

.download-btn img {
    width: 100%;
    max-width: 36px;
    height: auto;
}

.invite-mail-label {
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
}

.invite-input-wrapper-main {
    background: #F8F8F8;
    padding: 16px;
    border-radius: 8px;
    padding-bottom: 0;
}

.invite-label-bottom {
    margin-bottom: 8px;
}

.send-btn {
    background: #EE0F37;
    color: #fff;
    border: none;
    width: 100%;
    max-width: 69px;
    padding: 5.5px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}


/* news updates popup css start*/

.news-updates-popup {
    width: 100%;
    max-width: 900px;
    height: 100%;
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    /* hide initially */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    z-index: 9999;
    scroll-behavior: smooth;
}

.news-updates-content-wrapper {
    padding: 20px;
}

.news-updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dddbdb;
    padding-bottom: 16px;
}

.news-updates-header h2 {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.news-updates-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

.news-updates-content {
    margin-top: 24px;
    position: relative;
}

.news-updates-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-updates-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/* .news-updates-add-btn {
    position: relative;
    background-color: #f82c4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  } */
.news-updates-add-btn {
    background: #ee0f37;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 16px 12px 41.6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    position: relative;
}

.news-updates-add-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 12px;
    top: 9px;
    background-image: url(../image/plus.svg);
    background-repeat: no-repeat;
}

.news-updates-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-updates-item {
    background-color: #ffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.news-updates-meta span,
.news-updates-update span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 5px;
    color: #7C7C7C;
}

.news-updates-update p {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

.news-updates-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-updates-details {
    flex: 1;
    margin-left: 16px;
}

.news-updates-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-updates-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.news-updates-update {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-updates-edit-btn {
    background-color: #FFEFF2;
    border: 1px solid #EE0F371F;
    color: #000;
    padding: 3px 14px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 77px;
}

.news-updates-edit-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../image/news-pen.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 5px;
}
.news-updates-share-btn {
    background-color: #FFEFF2;
    border: 1px solid #EE0F371F;
    color: #000;
    padding: 3px 14px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 77px;
}

/* .news-updates-share-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../image/share-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 5px;
}
 */

.news-updates-delete-btn {
    background-color: #FFEFF2;
    border: 1px solid #EE0F371F;
    color: #000;
    padding: 3px 14px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 88px;
}

/* .news-updates-delete-btn::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../image/news-pen.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 5px;
} */



/* news updates popup css end*/


.actions {
    position: relative;
}

.last-dots {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 19px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    width: 216px;
    padding: 12px;
    display: none;
    z-index: 99;
    border: 1px solid #E9E9E9;
}





.dropdown-item {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: #f9f9f9;
    border-radius: 50px;
    margin-bottom: 4px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #eeeeee;
}

.icon {
    width: 20px;
    height: 20px;
}

/* login page css start */

.sing-in .signup-container {
    width: 100%;
    max-width: 531px;
    padding: 96px 147px;
    background-color: #F8F8F8;
    margin: auto;
}

.signup-heading {
    padding-bottom: 32px;
}

.signup-heading h2 {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 16px;
}

.signup-heading p {
    font-size: 16px;
    font-weight: 500;
    color: #00000099;
}

.login-input-label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}



.form-input::placeholder {
    color: #000000B2;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 16.5px 20px;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}

.password-field {
    position: relative;
}

.password-field .form-input {
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 20px;
    bottom: -2%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.tacbox label {
    margin-left: 16px;
    color: #00000099;
    font-weight: 600;
}

.tacbox a {
    color: #000;
}

.signup-btn {
    padding: 15px;
    background: #EE0F37;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.sing-in .tacbox a {
    color: #00000099;
    font-size: 14px;
    font-weight: 500;
}

.sing-in .tacbox {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.or-divider-main {
    position: relative;
    z-index: 1;
}

.or-divider {
    text-align: center;
    background: #F8F8F8;
    color: #000;
    width: 36px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.or-divider::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #00000024;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #fff;
    color: #000;
    border: 1px solid #00000026;
    border-radius: 14px;
    padding: 15px 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.social-btn img {
    width: 18px;
    height: 18px;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #000000B2;
    font-weight: 500;
}

.login-link a {
    color: #000;
}




/* login page css end */


/* calender css start */

.flatpickr-months {
    padding: 15px 0;
    border-radius: 15px;
    border: 1px solid #ffffff3d;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 17px;
}

.flatpickr-day.selected {
    background: #EE0F37;
    border: unset;
    color: #fff;
    border-color: unset;
}

.flatpickr-day:hover {
    background: #FBE9EC;
    border-color: #FBE9EC;
}


/* edit event css start */



.edit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow: scroll;
}

.popup-container {
    background: #F8F8F8;
    width: 1024px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin: auto;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.header-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.btn-close {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-body {
    display: flex;
    margin-top: 32px;
}

.edit-event-sidebar {
    width: 250px;
    background: #fff;
    padding: 16px;
    margin-right: 16px;
    margin-left: 32px;
    border-radius: 12px;
}

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 14px 12px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    margin-bottom: 12px;
    text-align: left;
    background: #F8F8F8;
}

.sidebar-tab.active {
    background: #ed184f;
    color: white;
}

.sidebar-tab:hover {
    background: #ed184f;
    color: white;
}


.sidebar-tab a {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.edit-event-content-main {
    width: 100%;
    max-width: 694px;
}

.edit-event-content {
    flex: 1;
    padding: 32px 24px 24px 24px;
    background: #fff;
    border-radius: 12px;
}

.event-header-info {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.event-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 16px;
}

.event-name {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.event-summary {
    color: gray;
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 400;
}

.event-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.input-icon-wrapper {
    position: relative;
}

.event-form .input {
    width: 100%;
    padding: 13px 36px 13px 12px;
    border: unset;
    border-radius: 8px;
    font-size: 14px;
    background-color: #F8F8F8;
    position: relative;
}

.event-form .input-icon-wrapper::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../image/edit-event-input-icon.svg);
    background-repeat: no-repeat;
    right: 13px;
    top: 12%;
    z-index: 1;
    padding: 8px;
    background-color: #fff;
    background-position: center center;
    border-radius: 6px;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    appearance: none;
}

.edit-input-select {
    position: relative !important;
}

.edit-input-select::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url(../image/edit-select-icon.svg);
    background-repeat: no-repeat;
    right: 13px;
    top: 12%;
    z-index: 1;
    padding: 8px;
    background-color: #fff;
    background-position: center center;
    border-radius: 6px;
}

.event-form input::placeholder {
    opacity: 1;
    color: #000;
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
}

.icon-edit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.btn-save {
    background-color: #ed184f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    width: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin: 16px 32px 32px 0;
    float: right;
}


/* activities css start */

/* Overlay */
.event-activities-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: scroll;
}

/* Container */
.event-activities-container {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    margin: auto;
}

/* Header */
.event-activities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #00000029;
}

.popup-title {
    font-size: 20px;
    font-weight: 500;
}

.btn-close-activities {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Step & Upload */
.step-indicator {
    text-align: center;
    margin: 24px 0px 11px;
}

.step {
    color: #EE0F37;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4%;
    padding-bottom: 4px;
}

.step-indicator .section-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5%;
}

.event-activities-overlay .upload-box {
    border: 1px dashed #ccc;
    background: #f8f8f8;
    padding: 31px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 24px;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.upload-box-main label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.upload-text {
    font-size: 14px;
    font-weight: 400;
}

.upload-box .browse {
    color: #EE0F37;
    cursor: pointer;
    font-weight: 500;
}

/* Group Info */
.group-info {
    display: flex;
    gap: 24px;
    margin: 24px 0;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-activities-overlay .input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #00000029;
    margin-top: 5px;
    background: #fff;
    color: #000 !important;
    font-size: 14px;
    font-weight: 500;
}

/* Toggle Tabs */
.add-people-main {
    padding: 16px;
    border: 1px solid #00000029;
    border-radius: 12px;
}

.add-people-main-heading p {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px;
}

.toggle-tabs {
    display: flex;
    background-color: #FBE9EC;
    border-radius: 12px;
    overflow: hidden;
    padding: 8px 8px;
    margin-bottom: 12px;
}

.tab-btn {
    flex: 1;
    padding: 10px 24px;
    background-color: unset;
    color: #B18787;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    letter-spacing: 1%;
    line-height: 18px;
}

.tab-btn.active {
    background-color: #fff;
    color: #EE0F37;
    font-weight: 600;
    letter-spacing: 1%;
    border-radius: 8px;
}


/* Add Person */
.people-input-wrapper-main {
    background: #F8F8F8;
    padding: 16px;
    border-radius: 12px;
}

.people-input-wrapper {
    margin-bottom: 16px;
}

.input-with-button {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.person-info-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
}

.person-info-div label {
    font-size: 14px;
    font-weight: 500;
    color: #7C7C7C;
}

.total-count {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.input-with-button .input {
    width: 100%;
    padding: 16.5px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    border: 1px solid #0000001F;
    border-radius: 8px;
    outline: none;
    color: #000;
}

.btn-add {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    background: #ED0F36;
    color: white;
    padding: 9px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 16px;
}

/* Person List */
.people-list {
    width: 100%;
    max-width: 659px;
    position: relative;
    height: 300px;
    overflow-y: auto;
    /* enables vertical scroll */
    overflow-x: hidden;
}

.people-list::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #EFEFEF;
    border-radius: 20px;
    position: absolute;
    right: -25px;
    top: 0;
}

.person-item.active::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #EE0F37;
    border-radius: 20px;
    position: absolute;
    right: -25px;
    top: 0;
}

.person-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* optional: wrap if content is too wide */
}

.person-item:last-child {
    border-bottom: none;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 16px;
}

.person-info .name {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 4px;
    color: #000;
}

.person-info .email {
    font-size: 14px;
    color: #7C7C7C;
    font-weight: 400;
    line-height: 16px;
}

.badge {
    margin-left: auto;
    background: #F5F5F5;
    padding: 2.5px 11px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: unset;
}

.person-item:hover .badge {
    background-color: #FBE9EC;
    color: #ED0F36;
}


/* Assigned Roles */
.activity-assignment {
    margin-top: 12px;
}

.activity-assignment h4 {
    font-size: 16px;
    font-weight: 500;
}

.assigned-roles {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

/* Footer */
.popup-footer {
    text-align: right;
    margin-top: 24px;
}

.event-activities-overlay .btn-submit {
    background: #EE0F37;
    color: #fff;
    padding: 11px 19px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.event-activities-overlay .form-select-group {
    position: relative;
}

.event-activities-overlay .form-select-group::before {
    content: '';
    width: 12px;
    height: 9px;
    background-image: url(../image/droup-down-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 51px;
}

.location-input-wrapper {
    /* position: relative; */
}

.pac-container {
    z-index: 9999 !important;
    /* width: 100% !important; */
    box-sizing: border-box;
}



/* Emoji Picker Container */
.emoji-picker {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

/* Emoji Label */
.emoji-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}

/* Emoji Grid */
.emoji-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* Emoji Buttons */
.emoji-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
    min-width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-btn:hover {
    background: #e2e8f0;
    transform: scale(1.1);
}

/* Emoji Toggle Button Icon (Right Aligned) */
.emoji-toggle-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.toggle-emoji-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #facc15; */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.toggle-emoji-btn:hover {
    background-color: #ee0f37;
}


/* Broadcast AUTH PAGE CSS START */

.registration-page-body {
    position: relative;
    background: #E8ECEF;
}

.registration-top-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.registration-container {
    width: 100%;
    max-width: 773px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px 12px 0 12px;
    background: #fff;
  }
  
 .registration-container .event-header {
    background-color: #EE0F37;
    color: #fff;
    display: flex;
    padding: 16px;
    align-items: center;
    border-radius: 16px;
    justify-content: start;
  }
  
  .event-img {
    width: 100%;
    max-width: 168px;
    height: auto;
    border-radius: 10px;
    margin-right: 32px;
  }
  
  .event-title {
    font-size: 32px;
    font-weight: 500;
  }
  
  .event-subtitle {
    font-size: 16px;
    margin-top: 5px;
  }
  
  .event-info {
    margin-top: 10px;
    display: flex;
    gap: 1rem;
    font-size: 14px;
  }
  .event-info img {
	width: 100%;
	height: auto;
	max-width: 16px;
}
  .event-time, .event-date {
	display: flex;
	align-items: center;
	gap: 0 8px;
}
  
  .form-section {
    background-color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
  }
  
  .registration-container .form-row {
    display: flex;
    gap: 0 24px;
    flex-wrap: wrap;
  }
  
  .registration-container .form-group {
    margin-bottom: 24px;
  }
  
  .form-group input,
  .form-group select {
    padding: 12.5px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    appearance: auto;
    background: unset;
  }

  .form-group input::placeholder {
    color: #7C7C7C;
  }

  .phone-group input {
	width: 100%;
	max-width: 192.5px;
}
.contry-code-call {
    background-color: #F8F8F8;
    width: 100%;
    max-width: 104px;
    margin-right: 3px;
}
  
  .phone-group .phone-input {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .phone-group .flag {
    font-size: 1.3rem;
  }
  
  .country-code {
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
  }
  
  .phone-input input {
    flex: 1;
  }
  
  .checkbox-row label {
	font-size: 14px;
	color: #7C7C7C;
	font-weight: 500;
	gap: 0 8px;
	display: flex;
	align-items: center;
}
  
  .last-btn-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
  
  .next-btn {
    background-color: #EE0F37;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .next-btn:hover {
    background-color: #c00410;
  }
/* Broadcast AUTH PAGE CSS END */

.listner-file-box .upload-box {
	border: 2px dashed #ccc;
	background: #f8f8f8;
	padding: 12.2px 177px;
	text-align: center;
	border-radius: 16px;
	color: #888;
	font-size: 14px;
	cursor: pointer;
	max-width: 566px;
	margin-bottom: 0;
}
.listner-page-body .registration-container .form-row {
	margin-top: 15px;
}
.upload-img-box {
	display: flex;
	justify-content: space-between;
    align-items: center;
    width: 100%;
}
.upload-profile-icon {
	width: 100%;
	max-width: 102px;
    max-height: 102px;
}
.upload-profile-icon img {
	background: #F5CED5;
	width: 100%;
	height: auto;
	border-radius: 8px;
}


/* ------------------------------------------------Media-Queries------------------------------------------------------------------ */
@media only screen and (max-width: 991px) {
    .form-section {
        padding: 15px;
    }
}

@media only screen and (max-width: 575px) {

    .event-info {
        margin-top: 5px;
        gap: 5px;
        flex-direction: column;
    }
    .registration-container .form-row {
        gap: 0 15px;
        flex-direction: column;
    }
    .contry-code-call {
        width: 100%;
        max-width: 100%;
        margin-right: 0px;
        margin-bottom: 24px;
    }
    .phone-group input {
        width: 100%;
        max-width: -webkit-fill-available;
        max-width: -moz-available;
    }
    .event-title {
        font-size: 28px;
    }
    .registration-container .event-header {
        justify-content: space-between;
    }
        .form-section {
        padding: 25px 0 0 0;
    }
    .registration-container {
        padding: 20px 15px 40px 15px;

    }
}

@media only screen and (max-width: 485px) {

    .registration-container .event-header {
        flex-direction: column;
    }
    .event-img {
        margin-right: 0;
        margin-bottom: 15px;
        max-height: 126px;
        max-width: 225px;
        object-fit: cover;
    }
}