@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --roboto: 'Roboto', 'Roboto Sans', sans-serif;
    --font-heading: 'Roboto', 'Roboto Sans', sans-serif;
    --font-body: 'Roboto', 'Roboto Sans', sans-serif;
    --light: #F9F9F9;
    --blue: #3C91E6;
    --light-blue: #CFE8FF;
    --grey: #eee;
    --dark-grey: #AAAAAA;
    --dark: #342E37;
    --red: #DB504A;
    --yellow: #FFCE26;
    --light-yellow: #FFF2C6;
    --orange: #FD7238;
    --light-orange: #FFE0D3;
}

body {
    font-family: var(--roboto) !important;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-user-drag: none;
    user-select: none;
    overscroll-behavior: none;
    -webkit-user-select: none; 
}


.global-font,
button,
input,
select,
textarea {
    font-family: var(--roboto) !important;
}

.mobile-sidebar-toggle {
    display: none;
}

.sidebar-overlay {
    display: none;
}

h1, h2, h3, h4, h5, h6,
.heading-text {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}

p, label, span, li, a,
.body-text {
    font-family: var(--font-body) !important;
}

.font-family {
    font-family: 'Roboto', sans-serif;
}

.cards-font {
    font-weight: 500;

}

.font-color {
    color: #00000080;
}

#mainContainer nav {
    background: var(--light);
    padding: 0 24px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    font-family: 'Roboto', sans-serif;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 76px;
    justify-content: space-between;
}

#mainContainer nav form {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
}

#mainContainer nav form .form-input {
    display: flex;
    height: 36px;
}

#mainContainer nav form .form-input input {
    padding: 5%;
    height: 100%;
    background: var(--grey);
    border-radius: 25px;
    outline: none;
    width: 80%;
    color: var(--dark);
    border: 2px solid #00000026
}

#mainContainer nav form .form-input button {
    width: 36px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    color: var(--light);
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 0 36px 36px 0;
    cursor: pointer;
}

#mainContainer nav .profile img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

.btn-color {
    padding: 10px 10px;
    font-size: 14px;
    background-color: #094E9B;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.header-color {
    color: #094E9B !important;
}


tr {
    border-bottom: 1px solid #ccc;
}

.user-name {
    color: #333;
}

.pagination {
    display: flex;
    width: 100%;
    height: 40px;
    font-family: 'Roboto', sans-serif;
    color: #6b7280;
    justify-content: space-between;
}

.pagination > a:last-of-type {
    text-align: right;
}

.pagination a, .pagination .dots {
    color: #9ca3af;
    display: block;
    padding: 16px 16px 0;
    text-decoration: none;
    margin-top: -1px;
}

.pagination .dots {
    color: #6b7280;
    font-weight: 500;
}

.pagination a:hover {
    border-color: #d1d5db;
    color: #374151;
}

.pagination a:active,
.pagination a.current {
    border-color: #f59e0b;
    color: #374151;
}

.pagination > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pagination > a:first-of-type {
    padding: 16px 4px 0 0;
}

.pagination > a:last-of-type {
    padding: 16px 0 0 4px;
}

.pagination > a > svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pagination > a:first-of-type > svg {
    margin-right: 20px;
}

.pagination > a:last-of-type > svg {
    margin-left: 20px;
}

.pagination > a.next > svg {
    transform: scaleX(-1);
}

.pagination .pages {
    display: flex;
    width: 50%;
    max-width: 300px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#globalPagination {
    background: #fff;
    padding: 0 24px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    font-family: 'Roboto', sans-serif;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 63px;
    border-radius: 0 0 6px 6px;
}

.common-menu {
    background: #FFFFFF;
    border-radius: 3px;
}

.name-model {
    text-align: start !important;
}

td, .form-input-size {
    font-size: 14px;
}

.button-color {
    background: #094E9B !important;
    color: #fff !important;
}

td {
    width: 100px;
    white-space: normal;
}

.table-body {
    background: #fff;
}

.table-body {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.table-body::-webkit-scrollbar {
    width: 4px;
}

.table-body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.table-body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}


.dashboard-container {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    
}

.dashboard-container::-webkit-scrollbar {
    width: 4px;
}

.dashboard-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.dashboard-container::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #83c1e7, #ccdbe1);
}

.modal {
    overflow-y: auto;
    overflow-x: hidden;
}

.modal::-webkit-scrollbar {
    width: 4px;
}

.modal::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.modal::-webkit-scrollbar-track {
    background: #ffffff
}

html::-webkit-scrollbar {
    width: 4px;
}

html::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

html::-webkit-scrollbar-track {
    background: #ffffff
}

.add-field-form::-webkit-scrollbar-thumb {
    background: #dee2e6 !important;
    border-radius: 4px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead, tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table-body {
    width: 100%;
    table-layout: fixed;
}

table {
    margin: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    border-collapse: collapse;
    z-index: 1;
    white-space: nowrap;
}

th, td {
    padding: 10px;
    gap: 10px;
    position: relative;
    cursor: default;
}

.fa-edit {
    color: #72B7F2;
    cursor: pointer !important;
    font-size: 17px;
}

.fa-trash {
    color: #FF6766;
    cursor: pointer !important;
    font-size: 17px;
}

.fa-print {
    color: #094E9B;
    cursor: pointer !important;
    font-size: 17px;
}

.fa-save {
    color: #1b7d08;
    cursor: pointer !important;
    font-size: 20px;
}

.fa-user-plus,
.fa-envelope,
.trash,
.options,
.copy-link,
.fa-circle-play,
.toggle,
.fa-eye,
.checkbox {
    cursor: pointer !important;
}

.fa-bars {
    cursor: grab !important;
}

.drag-handle {
    cursor: grab !important;
}

.menu li:hover {
    background-color: #258CFE !important;
    border-radius: 30px; 
    color : #fff;
    cursor: pointer;
}

.value-color {
    color: #094E9B;
    font-weight: 600;
}

.update-button-color {
    background: #007BFF;
}

.font-black {
    color: #090A0A;
}

.clear-button:hover {
    background: #258CFE !important;
}

.clear-button {
    background: #258CFE !important;
}

.w-35 {
    width: 35%;
}

.w-50 {
    width: 50% !important;
}

.pointer {
    cursor: pointer !important;
}

.profile-text {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 21.09px;
    letter-spacing: 0.02em;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.profile-text-bold {
    font-family: Roboto, sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.text-blue {
    color: #094E9B;
}


.table_header {
    --bs-table-color: #fff !important;
    --bs-table-bg: #094E9B !important;
}

table {
    --bs-table-striped-bg: #FAFAFA !important;
}

.w-10 {
    width: 10%;
}

.w_20 {
    width: 20px;
}

.w_25 {
    width: 25px;
}

.w_50 {
    width: 50px;
}

.w_60 {
    width: 60px;
}

.w-30 {
    width: 30% !important;
}

.W_70 {
    width: 70px;
}

.w-70 {
    width: 70%;
}

.w_100 {
    width: 100px !important;
}

.w_150 {
    width: 150px;
}

.w_190 {
    width: 190px;
}

.w_200 {
    width: 200px;
}

.w_250 {
    width: 250px;
}

.w_300 {
    width: 300px;
}

.w_130 {
    width: 130px;
}

/* .word_wrap td {
    word-wrap: break-word;
    white-space: normal;
    font-size: 14px;
} */

.fs-14 {
    font-size: 14px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.f-12 {
    font-size: 12px !important;
}

.f-13 {
    font-size: 13px !important;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px !important;
}

.w_35 {
    width: 35% !important;
}

.label-font span {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.label-font {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #33333380;
}

.label_flex {
    display: flex;
    gap: 35%;
}

.default-color {
    color: #33333380;
}

.font-wight {
    font-weight: 600;
}

.text-default {
    color: #33333380;
}

.check-box,
.fa-close {
    cursor: pointer;
}

.check-box {
    border: 1px solid #838080;
}

.default-text {
    color: #333333;
}

.font-width-400 {
    font-weight: 400;
}

.font-width-500 {
    font-weight: 500;
}

.font-width-600 {
    font-weight: 600;
}

.close-icon {
    border: none;
    background: #0000001A;
    font-size: 14px;
    color: black;
    cursor: pointer;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free', 'Font Awesome' !important;
}

.close-icon:hover {
    color: #000000;
}

.open-sidebar {
    margin-left: 250px !important;
}

.word-spacing {
    word-wrap: break-word;
    white-space: normal;
}

/* Common Webkit Scroll */
.common-scroll::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.common-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.common-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.common-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.alert {
    padding: 20px;
    background-color: #e14545;
    border: 1px solid #f44336;
    opacity: 0.83;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    border-radius: 6px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
    width: 17%;
    word-wrap: break-word;
    max-width: 100%;
}

.alert.success {
    border: 1px solid #04AA6D;
    border-left: 9px solid #056a0e;
    background-color: #0c8e3c;
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.alert.info {
    border: 1px solid #2196F3;
    border-left: 9px solid #2196F3;
    background-color: #c3d9eb;
    color: #2196F3;
}

.alert.warning {
    border: 1px solid #ff9800;
    border-left: 9px solid #ff9800;
    background-color: #ffc46c;
    color: #ff9800;
}

.close-btn {
    padding-left: 15px;
    color: #fff;
    font-weight: bold;
    float: right;
    line-height: 20px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 20px;
}

.close-btn:hover {
    transform: scale(1.3);
}

.success_response {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
}

.failed_response {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #f84f42 !important;
    border-left: 9px solid #a31206 !important;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
    border-left: 9px solid #056a0e;
}

.info_message {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
}

.input-error {
    border-color: red;
}

.validator {
    color: red;
    font-size: 13px;
    display: block;

}

.input-border {
    border-color: red !important;
}

.border_bottom {
    border-bottom: 2px solid #8d96a4 !important;
}

.header-size {
    font-size: 20px;
    font-weight: 600;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10005;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 6px solid transparent;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader img {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal {
    align-items: center;
    justify-content: center;
}

.model-close-icon {
    border: none;
    background: #fff;
    font-size: 14px;
    color: #1b1919;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-border-value {
    border: 1px solid #e4dada;
}

.form-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.upload-files-container {
    width: 100%;
    padding: 13px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cannot-upload-message {
    background-color: #ffc6c4;
    font-size: 15px;
    align-items: center;
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 5px;
    color: #BB0000;
    display: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.cannot-upload-message span, .upload-button-icon {
    padding-right: 10px;
}

.cannot-upload-message span:last-child {
    padding-left: 20px;
    cursor: pointer;
}

.file-block {
    color: #f7fff7;
    background-color: #177825;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 390px;
    position: relative;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
}

.file-info {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.file-icon {
    margin-right: 10px;
    font-size: 18px;
}

.file-name, .file-size {
    padding: 0 3px;
}

.remove-file-icon {
    cursor: pointer;
    font-size: 18px;
}

.progress-bar {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 4.5%;
    width: 0;
    height: 5px;
    border-radius: 10px;
    background-color: #4BB543;
}

.upload-button {
    font-family: 'Roboto', sans-serif !important;
    background-color: #094E9B !important;
    color: #fff !important;
    align-items: center !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 8px 20px !important;
    cursor: pointer !important;
    transition: 0.3s ease-in-out !important;
}

.upload-button:hover {
    background-color: #094E9B;
}

.drag-file-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.upload-icon {
    font-size: 40px;
    color: #177825;
    margin-bottom: 10px;
}

.dynamic-message {
    font-size: 16px;
    color: #333;
}

.browse-files {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #000000;
}

.default-file-input {
    display: none;
}

.modal-footer {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.modal-div {
    border-radius: 8px;
    /* background: linear-gradient(to bottom, #81c0e8, #ccdbe1); */
    background: #fff;
}

.inner-content {
    border-radius: 22px;
    background: none;
}

.btn-close {
    width: 12px;
    height: 12px;
}

.form-control {
    padding: 8px;
}

.form-select {
    padding: 8px;
}

.model-value {
    border-radius: 0 0 16px 16px;
}

.choices__inner {
    max-height: 100px !important;
    overflow-y: auto !important;
}

.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
    max-height: 200px !important;
}


.choices__list--dropdown {
    z-index: 9999 !important;
}

.choices__inner {
    display: inline-block !important;
    vertical-align: top !important;
    width: 100% !important;
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    /* min-height: 42px !important; */
}

.menu-item:hover svg path {
    fill: #1b1919 !important;
    stroke: #1b1919 !important;
}

.setting:hover svg path {
    fill: none !important;
    stroke: #000000 !important;
}

.support:hover svg path {
    fill: none !important;
    stroke: #000000 !important;
}

.common-glass-effect {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-container {
    bottom: 13px;
    /* position: relative; */
}

.initial-profile-32 {
    border-radius: 50%;
    font-size: 12px;
    object-fit: cover;
    border: 2px solid #ccc;
}

.profile-image {
    border-radius: 50%;
    font-size: 12px;
    object-fit: cover;
}

.choices__inner::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

.choices__inner::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.choices__inner::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.choices__inner::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.choices__list::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.choices__list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.choices__list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.choices__list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.choices__list .choices__item--choice.is-highlighted {
    background-color: #258CFE !important;
    color: #fff;
    border-radius: 8px;
}

.choices__list {
    padding: 3px !important;
}

.choices__list .choices__item--choice {
    font-size: 13px !important;
    font-family: Roboto, sans-serif !important;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    border-radius: 5px !important;
}

.choices__placeholder {
    color: black !important;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
        padding-right: 0 !important;
    }
}

.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.load-spinner {
    width: 40px;
    height: 40px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #268DFE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-image {
    width: 27px;
    margin-top: 7px;
}

.loading-model {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.hidden {
    display: none !important;
}

.text-center-align {
    white-space: pre-line;
}

.pagination {
    text-align: center;
    margin-bottom: 0;
    width: 64% !important;
}

.pagination a {
    padding: 4px 11px;
    margin: 0 9px;
    background-color: #f0f0f0;
    color: #000000;
    text-decoration: none;
    border-radius: 37px;
}

.pagination a:hover {
    background-color: #007bff;
    color: white;
}

.pagination .current {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

.a-text {
    text-decoration: none !important;
}

.pagination {
    display: flex;
    justify-content: center !important;
}

@media (max-width: 768px) {
    #mainContainer nav {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    #mainContainer nav form {
        margin-left: 0;
        max-width: 100%;
    }

    .table-body {
        overflow-x: auto;
    }

    .pagination {
        width: 100% !important;
    }
}

@media (min-width: 769px) {
    #mainContainer nav {
        flex-direction: row;
        align-items: center;
        height: 76px;
    }

    #mainContainer nav form {
        margin-left: auto;
        max-width: 400px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .table-body {
        overflow-x: auto;
    }
}

#rowsPerPage {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

.dropdown-menu {
    --bs-dropdown-min-width: 0rem !important;
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
    background-size: 1000px 100%;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.circle {
    height: 70px;
    width: 70px;
    border-radius: 35px;
}

.box {
    height: 70px;
    width: 70px;
}

.line-table {
    height: 12px;
    width: 100%;
    background-color: #e2e2e2;
    display: inline-block;
    border-radius: 4px;
}

.pagination-dots {
    pointer-events: none;
    cursor: default;
    padding: 0 10px;
    font-weight: bold;
}

.pagination .page-item .page-link {
    border-radius: 50% !important;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 50% !important;
}

.disabled {
    cursor: not-allowed !important;
}

.page-item.active a {
    border: 3px solid #c7e2ff !important;
}

input {
    font-family: Roboto, sans-serif !important;
}

.modal-content {
    background-color: unset !important;
    border:unset !important;
}

input[type="checkbox"] {
    cursor: pointer !important;
}

.custom_field_type {
    width: 150px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.custom_field_input {
    width: 250px !important;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-size: 14px !important;
}

.custom_type_form {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px !important;
}

.custom_field_input input[type="checkbox"],
.custom_field_input input[type="radio"] {
    width: auto !important;
    margin-left: 5px !important;
}


.custom-field-textarea {
    height: 80px !important;;
}

.custom_field_input input[type="time"] {
    width: 150px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
}

#ampmLabel {
    width: 50px;
    text-align: center;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

.text-decoration {
    text-decoration: none !important;
}

.error-msg {
    color: red;
    font-size: 0.875em;
}

#toast-container {
    position: fixed;
    top: 10px;
    left: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1050;
}

.toast {
    white-space: nowrap;
    max-width: 100vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-body {
    overflow: hidden;
    text-overflow: ellipsis;
}

.heading-item {
    padding: 5px 8px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #555 !important;
}

.heading-item.active {
    color: #007bff;
}

.heading-item.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background-color: #007bff;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.no-data-found {
    font-size: 15px;
    display: flex;
    justify-content: center;
    font-weight: 600;
    color: #000000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.enabled-div {
    cursor: pointer !important;
    opacity: 1;
    pointer-events: auto !important;
}

.disabled-div {
    cursor: not-allowed !important;
    opacity: 0.2 !important;
    pointer-events: none !important;
}

.model-type {
    display: none;
}

.inline-edit-border {
    color: var(--bs-body-color) !important;
    border-color: #86b7fe !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .22) !important;
}

.event-form-entries-details::-webkit-scrollbar-thumb {
    background-color: #81c0e8;
    border-radius: 4px;
}

.event-form-entries-details {
    background: none !important;
}

.event-form-entries-details::-webkit-scrollbar-track {
    background-color: #C1D7E2 !important;
}

.sort-handle {
    cursor: grab !important;
}

.white-background {
    background-color: #fff !important;
}

@media only screen and (max-width: 480px) {
    #content main .box-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        grid-gap: 20px;
        margin-top: 19px;
        padding-left: 0;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {

    #content main .box-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        grid-gap: 20px;
        margin-top: 19px;
        padding-left: 0;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    #content main .box-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        padding-left: 0;
    }
}

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.alphabetic-image {
    width: 25px;
}

.not-implemented {
    pointer-events: none;
    cursor: not-allowed;
}

.filter-button {
    background: #dfe2e9;
    border: none;
    padding: 13px 14px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s ease;
}

.filter-button:hover {
    background: #e0e6ef;
}

.filter-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(3%) saturate(1288%) hue-rotate(169deg) brightness(92%) contrast(86%);
}

.scroll::-webkit-scrollbar {
    height: 5px;
}

.scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.dashboard-container {
    border-radius: 16px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    background: #fff;
    height: 98vh;
    height: calc(100vh - 43px) !important;
    /* margin-top: 18px; */
    overflow: hidden;
    margin-bottom: 8px !important;
}

/* @media (max-height: 600px) {
    .dashboard-container {
        height: 100vh;
    }
} */

/* @media (min-width: 768px) and (max-height: 900px) {
    .dashboard-container {
        height: 97vh;
    }
} */

@media (min-width: 1200px) {
    .dashboard-container {
        height: calc(100vh - 43px);
    }
}

@media (min-width: 1600px) {
    .dashboard-container {
        height: calc(100vh - 43px);
    }
}

.profile {
    border: 3px solid;
    border-radius: 20px;
}

.sidebar {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item {
    display: block;
    position: relative;
}

.menu-item::after {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 115%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #094E9B;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(9, 78, 155, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item:hover::after {
    opacity: 1;
    transform: translate(6px, -50%);
}

ul.menu {
    max-height: 100vh;
    overflow-y: auto;
    padding-right: 10px;
    overflow-x: hidden !important;
}

ul.menu::-webkit-scrollbar {
    display: none;
}

ul.menu::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

ul.menu::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidebar .menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 1rem;
    align-items: center;
}

.sidebar .menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 1rem;
    align-items: center;
}

.submenu {
    height: 98vh;
}

@media (max-height: 600px) {
    .submenu {
        height: 100vh;
    }
}

/* @media (min-width: 768px) and (max-height: 900px) {
    .submenu {
        height: 85vh;
    }
} */

@media (min-width: 1200px) {
    .submenu {
        height: 100vh;
    }
}

#dashAndSideBar {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: visible;
}

#sidebarContainer {
    background-color: #f5f5f5;
    overflow-y: auto;
}

#content {
    width: 100%;
    background-color: #fff;
}

.profile-dropdown {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    z-index: 999;
    border: 1px solid #ccc;
}

#profileDropdown p {
    margin: 0;
    font-size: 14px;
}

.sidebar-bottom {
    position: relative;
}

#mainHeaderModel {
    position: fixed;
    margin-left: 67px;
    border-radius: 12px;
    background: #F2F4F5;
    margin-top: 17px;
    border-bottom: none;
    padding: 19px;
    width: 95%;
    z-index: 999;
}

.profile-menu {
    bottom: 14px;
    left: 76px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    border: 1px solid #f1e1e1;
    display: block;
    border-top: 2px solid #007bff;
    padding: 16px;
    border-radius: 8px;
}

.profile-menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    line-height: 2.5;
    z-index: 999;
    width: fit-content;
}

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

.manage-btn:hover {
    background: #e2e8f0;
    border-radius: 10px;
}

.logout-btn:hover {
    background: #f35151;
    color: #ffff;
    border-radius: 10px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    border: 3px solid #188ae1;
}

.profile-name {
    font-weight: bold;
    font-size: 16px;
    color: #2d3748;
}

.profile-details span {
    display: block;
    font-size: 14px;
    line-height: 27px;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logout-icon {
    width: 16px;
    margin-right: 6px;
}

.manage-btn,
.logout-btn {
    background: none;
    border: none;
    font-size: 14px;
    padding-left: 10px;
    cursor: pointer;
}

.glass-effect {
    background: rgb(78 76 76 / 20%) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.sign-out {
    padding: 8px 8px;
    font-size: 15px;
    cursor: pointer;
    color: #000000;
    height: 36px;
    background: #fff;
    border-radius: 9px;
}

.sign-out:hover {
    background-color: #fa0e31;
    color: #ffff;
}

#profileEmail,
#profilePhoneNumber {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.profile-details span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-details span {
    word-break: break-word;
    white-space: normal;
}

.text-break {
    word-break: break-word;
    white-space: normal;
}

.profile-details i {
    min-width: 16px;
    text-align: center;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999 !important;
    min-width: 200px;
    max-width: 100vw;
    width: fit-content;
}

.alert {
    min-width: 300px;
}

.content-color {
    color: #fff !important;
}

#userProfileIcon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.user-icon-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    object-fit: cover;
}

.custom_field_logo {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
}

/*FilTer Form */
.custom_filter_form {
    border-radius: 16px;
    height: 98vh;
    overflow: hidden;
    /* opacity: 0; */
    /* transform: translateX(10px); */
    /* visibility: hidden; */
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.custom_filter_form.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

@media (max-height: 600px) {
    .custom_filter_form {
        height: 100vh;
    }
}

@media (min-width: 768px) and (max-height: 900px) {
    .custom_filter_form {
        height: 85vh;
    }
}

@media (min-width: 1200px) {
    .custom_filter_form {
        height: calc(100vh - 35px);
    }
}

@media (min-width: 1600px) {
    .custom_filter_form {
        height: calc(100vh - 35px);
    }
}

.disabled-link {
    cursor: not-allowed !important;
    opacity: 0.2 !important;
    pointer-events: auto !important;
}

.side_form_scroll_web {
    display: block;
    max-height: 88px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    border-radius: 10px;
}

.side_form_scroll_web::-webkit-scrollbar {
    width: 4px;
}

.side_form_scroll_web::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.side_form_scroll_web::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.model-color {
    color: #094E9B;
    font-weight: bold;
}

#repSubscriptionForm .choices {
    width: 25%;
}

.input-field-width {
    height: 43px;
}

.contact-phone-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr 40px;
    gap: 8px;
}

.hind-color {
    color: #ec0d0d !important;
}

.hyper-color {
    color: #0d6efd !important;
}

.tick-icon {
    font-size: 20px;
    color: green;
    font-weight: bold;
}

.phone_purchase {
    background: #ffff;
    padding: 14px;
    border-radius: 10px;
}

.h_43 {
    height: 43px !important;
}

#afterCallEventFormModel .modal-body,
#afterCallEventFormModel .model-value,
#afterCallEventFormModel .modal-div {
    overflow: visible !important;
}

.invalid_field {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: red;
}

.form-background {
    background: #fff;
}

.side_form_scroll {
    display: block;
    max-height: calc(100vh - 265px) !important;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 1px !important;
}

/* @media (max-height: 600px) {
    .side_form_scroll {
        max-height: 40vh;
    }
}

@media (min-height: 601px) and (max-height: 900px) {
    .side_form_scroll {
        max-height: 69vh;
    }
}

@media (min-height: 901px) {
    .side_form_scroll {
        max-height: 77vh;
    }
} */

.side_form_scroll::-webkit-scrollbar {
    width: 4px;
}

.side_form_scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.side_form_scroll::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.edit-icon-con {
    position: relative;
    top: 3px;
}

.dropdown-menu .dropdown-item:hover {
    color: #007bff;
    background-color: transparent;
}

.dropdown-menu .dropdown-item {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    padding: 8px 12px;
}

.side_search {
    background-color: #fff !important;
    box-shadow: 0 0 10px 5px #00000008;
    font-size: 14px;
    border-radius: 20px !important;
    overflow-y: hidden;
}

.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("/static/images/action_icons/field_error.svg") !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.is-valid {
    border-color: #198754 !important;
}

.btn {
    --bs-btn-border-width: 0 !important;
}

.whats_new_data span h1,
.whats_new_data span h2,
.whats_new_data span h3,
.whats_new_data span h4,
.whats_new_data span h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.invalid-feedback {
    font-weight: 600;
}

.dashboard-margin-top {
    margin-top: 25px;
}

.notes-popover {
    max-width: 450px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.notes-popover .popover-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-bottom: none;
    padding: 12px 16px;
    border-radius: 7px 7px 0 0;
    letter-spacing: 0.3px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 450px;
    min-width: 150px;
}

.notes-popover .popover-body {
    padding: 0;
    background: #ffffff;
    border-radius: 0 0 7px 7px;
}

.notes-popover .popover-arrow::before {
    border-right-color: #0d6efd !important;
}

.notes-popover .popover-arrow::after {
    border-right-color: #0d6efd !important;
}

/* Notes content wrapper */
.notes-content {
    position: relative;
    padding: 16px;
    max-height: 350px;
    overflow-y: auto;
}

.notes-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    word-wrap: break-word;
}



/* Custom scrollbar for notes content */
.notes-content::-webkit-scrollbar {
    width: 6px;
}

.notes-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.notes-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.notes-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.notes-popover.popover {
  max-width: 300px !important;
  width: auto; /* or a fixed width if you prefer */
}

.table-model-height {
    min-width: 1000px;
}

.table-field {
    vertical-align: middle !important;
}

.chat-thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    cursor: pointer;
}

/*SUMMER DETAILS POPUP MOEL*/
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.call-summary-modal {
    max-width: 600px;
    width: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#recordedSummary .section-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#recordedSummary .phone-number {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.transcript-item {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.transcript-item:hover {
    transform: translateX(2px);
    box-shadow: var(--shadow-light);
}

.transcript-item.odd {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    border-left-color: #ff7043;
}

.transcript-item.even {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-left-color: #66bb6a;
}

.speaker-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.speaker-name {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-name.odd {
    color: #d84315;
}

.speaker-name.even {
    color: #2e7d32;
}

.timestamp {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 20px;
}

#recordedSummary .message-text {
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 0.95rem;
}

#recordedSummary .audio-player {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

#recordedSummary .audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

#recordedSummary .play-btn {
    background: var(--success-gradient);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

#recordedSummary .play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

#recordedSummary .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    margin: 0 12px;
}

.progress-fill {
    height: 100%;
    background: var(--success-gradient);
    width: 0%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.audio-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.summary-grid {
    display: grid;
    gap: 20px;
}

.summary-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.summary-card h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.summary-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 20px;
}

.summary-card li:before {
    content: '▸';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.summary-card li:last-child {
    border-bottom: none;
}

.badge-custom {
    background: var(--secondary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#recordedSummary .icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .call-summary-modal {
        margin: 10px;
        border-radius: 16px;
    }

    .section {
        padding: 20px;
    }

    .modal-header {
        padding: 20px;
    }
}

.custom-fieldset {
    border: 2px solid #dfe1e6;
    border-radius: 6px;
    padding: 15px;
    background: #f8f9fa;
}

.custom-legend {
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600;
}

#lassoMoreActionModel #taskActionStepModel {
    margin-top: 4px;
}

.remove-field-btn {
    width: 26px;
}

.choices__input{
     background-color: #ffff !important
}

.tooltip-top-fixed {
    /* Force top position */
}

.tooltip-top-fixed.bs-tooltip-auto[data-popper-placement^="bottom"],
.tooltip-top-fixed.bs-tooltip-bottom {
    display: none !important;
}

#chatMessages .messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 9px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 transparent;
}

#chatMessages .messages-area::-webkit-scrollbar {
    width: 6px;
}

#chatMessages .messages-area::-webkit-scrollbar-track {
    background: transparent;
}

#chatMessages .messages-area::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

#chatMessages .message-bubble {
    max-width: 70%;
    word-wrap: break-word;
}

#chatMessages .message-bubble.incoming {
    align-self: flex-start;
}

#chatMessages .message-bubble.outgoing {
    align-self: flex-end;
}

#chatMessages .message-content {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 4px;
}

#chatMessages .message-bubble.incoming .message-content {
    background: #e6e6e6;
    color: #000000;
    border-bottom-left-radius: 6px;
    line-height: 27px;
    max-width: 250px;
}

#chatMessages .message-bubble.outgoing .message-content {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    border-bottom-right-radius: 6px;
    line-height: 27px;
    max-width: 250px;
}

#chatMessages .message-time {
    font-size: 12px !important;
    color: #7892b2 !important;
    margin-left: 8px !important;
}

#chatMessages .message-bubble.outgoing .message-time {
    text-align: right;
}

#chatMessages .message-composer {
    border-top: 1px solid #e2e8f0;
    background: white;
    padding: 20px 25px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
#chatMessages .to_from {
    color: #f8c846;
    font-weight: 600;
    font-size: 14px;
}

#chatMessages .to_form {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

#chatMessages .shimmer-chat-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 15px;
}

#chatMessages .shimmer-message {
    height: 60px;
    width: 55%;
    border-radius: 16px;
    background: linear-gradient(
            90deg,
            #eeeeee 25%,
            #dddddd 50%,
            #eeeeee 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

#chatMessages .incoming-shimmer {
    align-self: flex-start;
    background-color: #e0e0e0;
}

#chatMessages .outgoing-shimmer {
    align-self: flex-end;
    background-color: #d0e0ff;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.message_loader {
    width: 22px;
    height: 22px;
    border: 3px dashed #fff;
    border-top: 2px solid #28a745;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.side_form_scroll {
    padding-left: 4px !important;
}

.modal-content {
    border-radius: 16px !important;
}

.modal-footer-section {
    background: #F5F4F7;
    border-radius: 0 0 18px 18px !important;
    padding: 13px;
}

.modal-div {
    border-radius: 18px !important;
}

.modal-content {
    border-radius: 18px !important;
}

.modal-header {
    border: none !important;
}

/* Customer announcement (global settings) — card + overlay */
#announcement-modal.customer-announcement-overlay {
    position: fixed;
    inset: 0;
    z-index: 10500;
    margin: 0;
    padding: 48px 16px 24px;
    border: none;
    background: transparent;
    box-sizing: border-box;
    display: none;
    align-items: flex-start;
    justify-content: center;
}

.customer-announcement-overlay .customer-announcement-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(55, 55, 55, 0.52);
    cursor: default;
}

.customer-announcement-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
    font-family: Roboto, system-ui, -apple-system, sans-serif;
}

.customer-announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 14px 18px;
    background: #c4473a;
    color: #fff;
    box-sizing: border-box;
}

.customer-announcement-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.customer-announcement-bell {
    font-size: 1.15rem;
    flex-shrink: 0;
    opacity: 0.95;
}

.customer-announcement-header-title {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    padding: 2px 0;
}

.customer-announcement-close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #a3372d;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.customer-announcement-close:hover {
    background: #8b2e25;
}

.customer-announcement-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.customer-announcement-body {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 22px 24px;
    background: #fff;
}

.customer-announcement-icon-col {
    flex-shrink: 0;
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-announcement-icon-ring {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff3cd;
    box-shadow: inset 0 0 0 1px rgba(212, 167, 44, 0.25);
}

.customer-announcement-icon-inner {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8a317;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.customer-announcement-text-col {
    min-width: 0;
    flex: 1;
    color: #3d3d3d;
    line-height: 1.55;
}

.customer-announcement-body-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.35;
}

.customer-announcement-body-text {
    font-size: 0.9375rem;
    color: #4a4a4a;
}

@media (max-width: 480px) {
    #announcement-modal.customer-announcement-overlay {
        padding: 24px 12px 16px;
        align-items: stretch;
    }

    .customer-announcement-card {
        max-width: none;
    }

    .customer-announcement-body {
        padding: 18px 16px 20px;
        gap: 14px;
    }
}

.choices {
    overflow: initial !important;
}