@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --border-color: #ced4da;
    --color: #ced4da;
    --border-radius: 6px;
    --input-height: 40px;
    --font-size: 14px;
    --placeholder-color: #adb5bd;
    --focus-color: #23a455; /* Bootstrap primary */
}


body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: #000;
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}



label {
    font-weight: 400;
    font-family: "Inter", sans-serif !important;
    color: #000;
    /* color: #6e6e6e !important; */
}

h5 {
    color: #000000;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

p {
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6  {
    color: #000000 !important;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}
/* --------------------------- preloader Start --------------------------- */
.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff8;
    display: grid;
    place-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.from_preloader{
    -webkit-backdrop-filter: blur(2px) !important;
    backdrop-filter: blur(2px) !important;
    background-color: #ffffff00 !important;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}
/* --------------------------- preloader end --------------------------- */
/* --------------------------- Form preloader Start --------------------------- */
.loader--spinner {
    display: inline-block;
    position: relative;
    color: official;
    height: 60px;
    width: 60px;
}

.loader--spinner div {
    animation: loader--spinner 1.2s linear infinite;
    transform-origin: 30px 30px;
}

.loader--spinner div:after {
    display: block;
    position: absolute;
    top: 0px;
    left: 27px;
    border-radius: 20%;
    content: " ";
    height: 15px;
    width: 6px;
    /* top: 3px;
    left: 27px;
    border-radius: 20%;
    content: " ";
    height: 10px;
    width: 5px; */
    background-color: #00539f;
}

.loader--spinner div:nth-child(1) {
    animation-delay: -1.1s;
    transform: rotate(0deg);
}

.loader--spinner div:nth-child(2) {
    animation-delay: -1s;
    transform: rotate(30deg);
}

.loader--spinner div:nth-child(3) {
    animation-delay: -0.9s;
    transform: rotate(60deg);
}

.loader--spinner div:nth-child(4) {
    animation-delay: -0.8s;
    transform: rotate(90deg);
}

.loader--spinner div:nth-child(5) {
    animation-delay: -0.7s;
    transform: rotate(120deg);
}

.loader--spinner div:nth-child(6) {
    animation-delay: -0.6s;
    transform: rotate(150deg);
}

.loader--spinner div:nth-child(7) {
    animation-delay: -0.5s;
    transform: rotate(180deg);
}

.loader--spinner div:nth-child(8) {
    animation-delay: -0.4s;
    transform: rotate(210deg);
}

.loader--spinner div:nth-child(9) {
    animation-delay: -0.3s;
    transform: rotate(240deg);
}

.loader--spinner div:nth-child(10) {
    animation-delay: -0.2s;
    transform: rotate(270deg);
}

.loader--spinner div:nth-child(11) {
    animation-delay: -0.1s;
    transform: rotate(300deg);
}

.loader--spinner div:nth-child(12) {
    animation-delay: 0s;
    transform: rotate(330deg);
}

@keyframes loader--spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* --------------------------- Form preloader end --------------------------- */
.font-18 {
    font-weight: 600;
    color: #000000 !important;
} 
.font-20 {
    font-weight: 600;
    color: #000000 !important;
    /* font-size: 22px !important; */
    font-size: 14px !important;
} 

.font-16 {
    font-size: 16px !important;
    font-weight: 600;
}

.page-title-box .page-title {
    font-size: 20px;
    margin: 0;
    color: #000000;
    font-weight: 600;
    margin-top: 20px;
}

.card {
    border-radius: 10px;
    border: 1px solid #f6f6f6;
}

.page-wrapper .page-content-tab {
    /* background-color: #f9f9f9; */
    /* background-color: #f5f6fa; */
    background-color: #ffffff;
    padding-bottom: 0px;
}

.col-form-label {
    padding-top: calc(.4rem + 1px);
    padding-bottom: calc(.4rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    color: #000000;
}

.left-sidebar .menu-body .nav-item .nav-link {
    position: relative;
    color: #5a5c61;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* height: 44px; */
    height: 55px;
    border-radius: 3px;
    padding: 10px;
    font-family: "Inter", sans-serif !important;
}

.left-sidebar .menu-body .nav-item .nav-link .menu-icon {
    color: #585858 !important;
    margin-right: 12px;
    font-size: 24px;
}

.left-sidebar .menu-body {
    padding: 0px !important;
}

.left-sidebar .menu-body .nav-item .nav-link.active, .left-sidebar .menu-body .nav-item .nav-link.active i {
    color: #ffffff !important;
    background: #23a455 !important;
    border-radius: 0 !important;
}

.left-sidebar .navbar-vertical .navbar-nav .nav-item .nav {
    padding: 0 0 0 0px;
}

.left-sidebar .navbar-vertical .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true] {
    /* color: #fff;
    background: #23a455; */
    color: #5a5c61;
    background: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* .enlarge-menu .left-sidebar .menu-body .nav-item .nav-link {
    padding: 0;
    color: #23a455 !important;
    background: #f2fffa !important;
} */

/* .enlarge-menu .left-sidebar:hover{
    color: #23a455 !important;
    background: #f2fffa !important;
} */

.left-sidebar .navbar-vertical .navbar-nav .nav-item .nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    left: 4px;
    width: 0px;
    height: 0px;
    border: 0px solid #8997bd;
    border-radius: 50%;
    background: rgba(48, 62, 103, .2);
}

/* .leftbar-tab-menu .main-icon-menu {
    background-color: #f4f4f6;
        border-right: 1px solid #cbcbcb;
}

.leftbar-tab-menu .main-icon-menu .main-icon-menu-body .nav.nav-tabs .nav-link {
    background-color: #ffffff;
    border-radius: 5px;
    font-weight: 500;
}

.leftbar-tab-menu .main-icon-menu .main-icon-menu-body .nav.nav-tabs .nav-link.active, .leftbar-tab-menu .main-icon-menu .main-icon-menu-body .nav.nav-tabs .nav-link:focus {
    background-color: #23a455;
    border-color: transparent;
    color: #fff;
}
.leftbar-tab-menu .main-icon-menu .main-icon-menu-body .nav.nav-tabs .nav-link.active, .leftbar-tab-menu .main-icon-menu .main-icon-menu-body .nav.nav-tabs .nav-link:active {
    color: #23a455;
}
.leftbar-tab-menu .main-menu-inner .navbar-vertical .navbar-nav {
    padding-left: 0rem;
}

.leftbar-tab-menu .main-menu-inner .topbar-left .logo .logo-lg {
    height: 24px;
}

.leftbar-tab-menu .main-menu-inner {
    width: 200px;
    height: 100%;
    background-color: #ffffff;
    border-right: 1px solid #eceff5;
    position: fixed;
    top: 0;
    left: 60px;
    z-index: 1001;
    border-right: 1px solid #eceff5;
} */

.header_page_all .page-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 15px;
    color: #000000;
     font-family: "Inter", sans-serif !important;
}
.header_page_all .page-title p{
    font-size: 16px;
    font-weight: 400;
    color: #000;
     font-family: "Inter", sans-serif !important;
}
.header_page_all {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.table {
    color: #000;
}

.btn-primary {
    background-color: #23a455;
    border: #23a455;
    /* padding: .8rem 1rem; */
    padding: 10px 12px;
}
.btn-primary::hover {
    background-color: #29b65f;
    border: #29b65f;
}
.btn:first-child:hover, :not(.btn-check)+.btn:hover {
    color: #fff;
    background-color:#23a455 ;
    border-color: #23a455;
}
.form-check-input:checked {
    background-color: #23a455;
    border-color: #23a455;
}
.btn-outline-primary {
    border: 1px solid #585858;
    color: #585858;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
     border: 1px solid #23a455;
    color: #23a455;
    background-color: transparent;
}
.form-control:focus {
    color: #000 !important;
    background-color: #fff;
    border-color: #85a8db;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table td {
    font-weight: 400;
    vertical-align: middle;
    border-color: #e8ebf3;
    font-size: 14px;
    font-family: "Inter", sans-serif !important;
}
.table th {
    font-weight: 600;
    vertical-align: middle;
    font-size: 16px;
    font-family: "Inter", sans-serif !important;
    color: #000;
}

.badge {
    line-height: 10px;
    font-size: 14px;
    padding: 12px;
}
.text-primary {
    color: #000 !important;
}

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

.phone-preview {
    position: sticky;
    /* top: 20px; */
    top: 65px;
    /* background: #f5f5f5; */
    border-radius: 30px;
    padding: 15px;
    height: fit-content;
    display: grid;
    /* justify-content: center; */
}

.phone-frame {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.phone-header {
    background: #075E54;
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-body {
    padding: 15px;
    /* min-height: 375px; */
    height: 375px !important;
    background: #ECE5DD;
    height: auto;
    overflow: auto;
    /* overflow-y: scroll; */
    scrollbar-color: green transparent;
    scrollbar-width: thin;
}

.phone-body::-webkit-scrollbar-button {
  display: none;
}

.message-bubble {
    background: white;
    padding: 10px 12px;
    /* border-radius: 8px; */
    border-radius: 5px;
    margin-bottom: 25px;
    /* box-shadow: 0 1px 2px rgba(0,0,0,0.1); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    max-width: 80%;
}

.message-footer {
    background: white;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 11px;
    color: #999;
}

.button-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.btn-add {
    border: 1px solid #25D366;
    color: #25D366;
    background: white;
    font-size: 13px;
    padding: 6px 16px;
}

.toggle-switch {
    float: right;
}

.form-switch .form-check-input:checked {
    background-color: #25D366;
    border-color: #25D366;
}

.message-editor {
    border: 1px solid #ddd;
    border-radius: 6px;
    min-height: 150px;
    padding: 15px;
    background: white;
}

.toolbar {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.toolbar-btn {
    background: none;
    border: none;
    color: #666;
    padding: 5px 8px;
    cursor: pointer;
}

.toolbar-btn:hover {
    color: #333;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.add-variable-link {
    color: #25D366;
    font-size: 13px;
    text-decoration: none;
    float: right;
}

.opti {
    display: flex;
    gap: 12px;
}
.btn-de-primary {
    background-color: transparent !important;
    color: #23a455 !important;
    border: 1px solid #23a455;
}
.btn-de-primary:hover {
    background-color: #23a455 !important;
    color: #fff !important;
    border: 1px solid #23a455;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #000000 !important;
}
.card-title {
    text-transform: capitalize;
    letter-spacing: .02em;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #000;
}
.nav.nav-tabs .nav-item.show.active, .nav.nav-tabs .nav-item.show:focus, .nav.nav-tabs .nav-link.active, .nav.nav-tabs .nav-link:focus {
    color: #23a455;
    background-color: #fff;
    border-color: transparent transparent #23a455;
}

.temp_lib {
    background-color: #f2fffa;
    margin: 15px;
    border-radius: 5px;
}

.nav.nav-tabs .nav-item.show, .nav.nav-tabs .nav-link {
    color: #000;
}
.bg-light-alt {
    background-color: #fff9f2 !important;
}

.text-primery-icon {
    color: #23a455;
}
.translate-middle {
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-100%, -55%) !important;
}
.text-secondary {
    --bs-text-opacity: 1;
    /* color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; */
    color: #23a455 !important;
    background: #f2fffa;
    border-radius: 50%;
    padding: 9px;
}
.o-1 {
    opacity: 1;
}
.display-5 {
    font-size: 2rem;
}
.dt {
    color: #585858;
}



.progress-circle {
  --value: 50;
  --size: 20px;
  --thickness: 10px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #333;
  background:
    conic-gradient(#23a455 calc(var(--value) * 1%), #e9ecef 0);
}

.progress-circle span {
  position: relative;
  font-size: 18px;
}

.progress-circle::before {
  content: "";
  position: absolute;
  width: calc(var(--size) - var(--thickness));
  height: calc(var(--size) - var(--thickness));
  background: #fff;
  border-radius: 50%;
}
.text-orange {
    color: #23a455;
}
.c-box {
    border: 1px solid #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}
.cont_s {
    padding: 2px 20px !important;
}
.cont_s:hover span{
    color: #fff !important;
}
.btn .badge {
    position: relative;
    top: 0px !important;
}

.chat-box-right .chat-body .chat-detail .media .media-body.reverse .chat-msg {
    background-color: #f2fffa ;
    border-radius: 10px;
}
.chat-box-right .chat-body .chat-detail .media .media-body .chat-msg {
    max-width: 50%;
    margin-bottom: 5px;
    margin-left: -10px;
}
.chat-box-right .chat-body .chat-detail .media .media-body .chat-msg p {
    padding: 7px 16px;
    background-color: rgb(255,255,255);
    /* background-color: rgba(11, 81, 183, .01); */
    border: 0px solid #e8ebf3;
    color: #000000;
    display: inline-block;
    margin-bottom: 0;
    border-radius: 10px;
}
.chat-box-right .chat-body .chat-detail .media .media-body.reverse .chat-msg p {
    padding: 7px 16px;
    background-color: rgba(11, 81, 183, .01);
    border: 0px solid #e8ebf3;
    color: #000;
    display: inline-block;
    margin-bottom: 0;
    border-radius: 10px;
}
.chat-box-right .chat-body .chat-detail .media .media-body .chat-msg:first-child p {
    padding-left: 10px;
}
.chat-box-right .chat-body .chat-detail .media .media-body.reverse .chat-msg {
    max-width: 50%;
    margin-bottom: 5px;
    margin-top: 15px;
    margin-right: -10px;
}
.chat-box-left .chat-list .media.new-message {
    border-color: #f2fffa;
    border-bottom: 1px solid #23a455;
    /* border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important; */
    background-color: #f2fffa ;
    margin-bottom: 5px;
    border-radius: 5px;
}
.send_btn {
    /* background-color: #23a455;
    padding: 12px 12px 12px 12px;
    color: #fff !important;
    border-radius: 50%; */
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff !important;
}
.chat-time {
    color: #868686;
    font-size: 11px;
}
.font-32{
    font-size: 32px;
    color: #23a455;
}
.modal-content .modal-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f1f1;
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 500px !important;
    --bs-offcanvas-height: 30vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-bg: #ffffff;
    --bs-offcanvas-border-width: 0;
    --bs-offcanvas-border-color: #eceff5;
    --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
}

    .upload-box {
      border: 2px dashed #ccc;
      border-radius: 10px;
      padding: 50px 20px;
      text-align: center;
      background-color: #fdfdfd;
      transition: border-color 0.3s ease;
    }
    .upload-box:hover {
      border-color: #23a455;
    }
    .upload-box input[type="file"] {
      display: none;
    }
    .upload-icon {
      font-size: 40px;
      color: #23a455;
      margin-bottom: 10px;
      line-height: 1;
    }
    .upload-text {
      font-weight: 500;
      color: #333;
    }
    .upload-subtext {
      font-size: 14px;
      color: #6c757d;
    }
    .upload-actions {
      margin-top: 15px;
      text-align: center;
    }
    .upload-actions a {
      font-size: 14px;
      text-decoration: none;
      margin: 0 10px;
    }
    .upload-actions a.watch {
      color: #dc3545;
    }
    .upload-actions a.download {
      color: #23a455;
    }

    .h-20 {
        height: 45px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .offcanvas-footer {
        cursor: auto;
        padding: 16px;
        background-color: rgb(255, 255, 255);
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }

  .offcanvas-body {
        cursor: auto;
        margin-top: 0px;
        margin-bottom: 72px;
        overflow: auto;
        height: calc(100vh - 132px);
    }


.nav-pills .nav-item.show .nav-link, .nav-pills .nav-link.active {
    background: #fe9a2a;
    color: #fff;
    border-radius: 0;
}


.btn-black {
    color: #fff;
    background: #292929;
}
.material_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stages {
    padding: 1rem 1rem 0rem 1rem;
}

.stage_card_main {
    background-color: #fcfcfc;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
}

.stage_info {
    background-color: #fff;
    padding: 15px;
    margin: 25px 25px 0px 25px;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
}
.checkbox_bg{
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}
.stage-card {
    padding: 20px;
    background-color: #f9f9f9;
}

.workflow {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

/* .stage {
    flex: 1;
    min-width: 150px;
    position: relative;
    text-align: center;
    cursor: pointer;
} */

.stage-box {
    color: #000;
    padding: 25px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1em;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.stage-b .stage-box{
    background-color: #000;
    color: #fff !important;
    border-radius: 15px;
}

.arrow {
    color: #667eea;
    font-size: 2em;
    font-weight: bold;
    flex-shrink: 0;
}

.status-t {
    padding: 10px !important;
}


#editableTable {
    border: 1px solid #f1f1f1;
    width:100%; 
    border-collapse:collapse; 
    text-align:left;
}
.summary-section {
    padding: 20px 20px 20px 20px;
    background-color: #fff6f6;
    border-top: 1px solid #cfcfcf;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ffe7e7;
}

.summary-row:last-child {
    border-bottom: none;
    /* border-top: 2px solid #333; */
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    padding-top: 15px;
}

.summary-label {
    margin-right: 40px;
    color: #666;
    min-width: 150px;
    text-align: right;
}

.summary-value {
    min-width: 150px;
    text-align: right;
    font-weight: 500;
}
.p-From {
    background-color: #f9f9f9;
    border-radius: 20px;
}

.chat-box-right .chat-header {
    border-bottom: 1px solid #f1f5fa;
    /* padding: 16px; */
    padding: 10px 16px;
    background-color: #075E54 !important;
    background-color: #1daa61 !important;
}
.chat-box-right .chat-header .media .media-body p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 12px;
}
.chat-box-right .chat-header .media .media-body h6 {
    /* font-size: 14px; */
    font-size: 16px;
    color: #ffffff !important;
    margin-bottom: 5px;
}
.chat-box-right .chat-header .chat-features {
    position: relative;
    top: -34px;
    float: right;
}

.chat-box-left .chat-list .media .media-body p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical; 
}

.close_btn {
    padding: 6px 12px !important;
    background: #fff;
    color: #00ad66 !important;
}

.close_btn:first-child:hover, :not(.btn-check)+.btn:hover {
    color: #fff;
    background-color:#23a455 ;
    border-color: #23a455;
}

.chat_stop {
    background-color: #f7f7f7;
    /* padding: 16px; */
    padding: 12px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

/* .chat_stop p{
    font-size: 13px;
} */

.chat-box-right {
    width: auto;
    /* background-color: #fff; */
    background: url(/static/images/chat_bg.png) #f1ebe4;
    /* background-color: #ECE5DD; */
    display: block;
    /* border-radius: 3px; */
    border-radius: 0 3px 3px 0;
    position: relative;
    /* height: calc(100vh - 165px); */
    height: calc(100vh - 60px);
    /* height: 750px; */
    /* margin-left: 361px; */
    margin-left: 310px;
    margin-bottom: 0px;
    /* border: 1px solid #eceff5; */
    border: none;
    overflow: hidden;
    border-left: none;
}
.chat-box-right .chat-body {
    padding: 16px;
    /* height: 615px; */
    /* height: calc(100vh - 360px); */
    /* height: calc(100vh - 200px);
    width: 100%; */
    align-content: normal;
    padding-top: 10px;
    height: calc(100vh - 180px);
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.bottom-sheet {
    /* position: fixed; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 20px 16px;
    transform: translateY(100%);
    transition: transform .35s ease;
    max-height: 65vh;
    overflow-y: auto;
    z-index: 1050;
    border-top: 1px solid #f1f1f1;
    /* box-shadow: 0 -6px 25px rgba(0,0,0,0.25); */
}
.bottom-sheet.show {
    transform: translateY(0);
}

 .list-group-item {
    border: none;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.2s;
}

.list-group-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.bottom_sheet_sec {
    background-color: #ffffff;
    padding: 16px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    border: 1px solid #f1f1f1;
}
.close-btn {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.template_item:hover{
    background: #f7faff;
}

.template-item-bg {
    background-color: #fff2e0;
    padding: 10px;
    border-radius: 8px;
}
.read_resp {
    color: #25D366 !important;
}
.un-delivered {
    color: #ff0000 !important;
}
.chat-box-left .chat-search {
    margin-top: 0px !important;
}
.chat-box-left .chat-body-left {
    /* height: calc(100vh - 262px); */
    height: calc(100vh - 150px);
}
.chat-box-left {
    height: auto !important;
    margin-bottom: 0px !important;
    padding: 0 !important;
    border-radius: 3px 0 0 3px;
}
.text-bold {
    font-weight: 600 !important;
}
.chat-body .media{
    margin-bottom: 10px !important;
}
.media {
    /* border-bottom: 1px solid #f1f5fa; */
    /* border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important; */
}

/* .chat-search .input-group {
    padding: 20px;
}
.chat-search .group {
    padding: 15px 10px;
} */

.chat-search .input-group {
    /* padding: 20px; */
    padding: 20px 0px 20px 20px;
}
.chat-search .group {
    padding: 15px 20px 15px 10px;
}

.broadcast-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: 0.2s;
    font-weight: 500;
}

.broadcast-radio {
    accent-color: #02a67d; /* green color */
    margin-right: 6px;
}
input[type="radio"]:checked + span {
    color: #02a67d;
    font-weight: 600;
}

#imageUrlInput {
    background: #f7f8fc; 
    border: none;
    height: 45px;
    font-size: 14px;
}
#imageUrlInput:focus {
    border: 1px solid #02a67d !important;
    box-shadow: none;
}
#imageCharCount {
    font-size: 12px;
}
.btn-outline-success {
    border-radius: 6px;
    font-weight: 500;
}
.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background: #005f54;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

.custom-file-upload:hover {
    background: #0056b3;
}

.custom-file-upload input[type="file"] {
    display: none;
}
.form-switch .form-check-input {
    width: 3em;
    margin-top: 0em;
}

.button-row {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.button-type {
    min-width: 140px;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-type select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.button-text-input {
    flex: 1;
    border: none;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    border-radius: 4px;
    background: transparent;
}

.button-text-input:focus {
    outline: none;
    background: #f8f9fa;
}

.button-text-input::placeholder {
    color: #ccc;
}

.char-count {
    font-size: 13px;
    color: #999;
    min-width: 45px;
    text-align: right;
}

.delete-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.delete-btn:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
}

.add-button-btn {
    border: 2px solid #10b981;
    background: white;
    color: #10b981;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.add-button-btn:hover {
    background: #10b981;
    color: white;
}

.quick-replies-row {
    background: #fafafa;
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.divider input {
    flex: 1;
}

.dropdown-icon {
    font-size: 12px;
    color: #999;
}

.contact_add_sp{
    color: #353735;
}

.contact_add_sp i{
    color: #00a74b;
    padding-right: 5px;
}

.contact_add_s .import_details{
    background: #ebf7f0;
    padding: 13px;
    border-radius: 10px;
}

.contact_add_s .import_details h3{
    font-size: 16px;
    color: #353735;
    margin-top: 0;
}

.contact_add_s .import_details p{
    font-size: 14px;
    color: #353735;
    margin-bottom: 5px;
}

.pre_media{
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 8px;
    background: #ebedf2 no-repeat;
    overflow: hidden;
    margin-bottom: 8px;
}

.pre_media#imageField{
    background-image: url(../images/template-header_image_preview.png);
    background-position: center center;
}

.pre_media#videoField{
    background-image: url(../images/template-header_video_preview.png);
    background-position: center center;
}

.pre_media#documentField{
    background-image: url(../images/template-header_doc_preview.png);
    background-position: center center;
}

.pre_media img, .pre_media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pre_media #docPreview img{
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.pre_temp_btn{
    /* color: rgb(37, 211, 102);  */
    color: #2196F3; 
    text-align: center; 
    padding: 8px 8px; 
    font-size: 16px; 
    background: white; 
    /* border-top: 1px solid #f0f0f0; */
    display: block;
}

.prev_wht_msg{
    max-width: 350px;
    width: 80%;
}

.bg_coloredinbox {
    padding: 0 !important;
}
.prev_bg {
    /* background-color: #ffe7e7; */
    background-color: #9ff7ce !important;
    /* color: #fff; */
    padding: 15px;
    /* border-radius: 10px; */
    border-radius: 5px;
}

.nochat_box-right{
    width: auto;
    background-color: #fff;
    display: flex;
    border-radius: 3px;
    position: relative;
    height: calc(100vh - 165px);
    /* height: 750px; */
    margin-left: 361px;
    margin-bottom: 0px;
    border: 1px solid #eceff5;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.no_chat_info h4{
    font-size: 24px;
}
.no_chat_info p{
    font-size: 18px;
    margin-top: 20px;
    color: #666;
    margin-bottom: 3px;
}
.no_chat_info img{
    width: 120px;
    height: auto;
}

.campaigns_list {
    width: 15%;
    font-size: 14px;
    text-align: center;
}
.campaigns_list .active {
    background-color: #f2fffa !important;
    color: #005f54 !important;
    border-bottom:1px solid #005f54 !important;
}

.campaign_list_s {
     position: relative;
    /* height: calc(100vh - 165px); */
    /* height: calc(100vh - 340px); */
    height: calc(100vh - 195px);
    /* height: 750px; */
    margin-bottom: 0px;
    overflow: hidden;
}
.campaign_list_s .table-responsive{
    /* height: calc(100vh - 386px); */
    height: calc(100vh - 270px);
    width: 100%;
}
.statistics_badge {
    background-color: #f3f5f9;
    padding: 8px;
    color: #737da5;
}
.page_refresh_s {
    background-color: #f2fffa;
    padding: 8px;
    color: #23a455;
}

.camp_any_detail a{
    color: #8b8b8b;

}
.camp_any_detail .card-body{
    padding: 20px !important;
}
hr {
    background-color: #f6f6f6 !important;
    opacity: .05 !important;
}

.stats_download {
    display: flex;
    justify-content: space-between;

}

.login_tjmb {
    height: auto !important;
    width: 500px !important;
    font-size: 14px;
    font-weight: 700;
}

.login_bg {
    background-color: #f2fffa;
}
.form-control {
    display: block;
    width: 100%;
    padding: .8rem 1rem !important;
}

.form_control{
    padding: .4rem 1rem !important;
}

.temp_lab {
    width: 10%;
}

.notice-banner {
    cursor: auto;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 8px;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box; */
}

.jgXXij {
    cursor: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.dDaysF {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 253, 234);
    padding: 6px 9px;
    width: fit-content;
    gap: 12px;
    border: 1px solid rgb(255, 238, 133);
    border-radius: 6px;
}

.itqTey {
    cursor: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 12px;
}

/* .left-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.right-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    flex-shrink: 0;
} */

.sync-info {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
}

.sync-button {
   display: flex;
    align-items: center;
    gap: 6px;
    background: #e9f0ff;
    border: none;
    color: #0066cc;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 500;
}

.sync-button:hover {
    background-color: rgba(0, 102, 204, 0.1);
}

.sync-icon {
    width: 16px;
    height: 16px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #f39c12;
    stroke-width: 2;
}

.message {
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.see-more {
    color: #f39c12;
    text-decoration: underline;
    margin-left: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.see-more:hover {
    color: #e67e22;
}

/* @media (max-width: 1200px) {
    .chat_stop p{
        font-size: 13px;
    }
} */

.enlarge-menu .left-sidebar .menu-body .nav-item.menuitem-active .drop_a{
    color: #ffffff !important;
    background: #23a455 !important;
    border-radius: 0 !important;
}

.enlarge-menu .left-sidebar:hover .menu-body .nav-item.menuitem-active .drop_a{
    color: #5a5c61 !important;
    background: #ffffff !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.enlarge-menu .left-sidebar .menu-body .nav-item.menuitem-active .nav-link .menu-icon{
    color: #ffffff !important;
}

.enlarge-menu .left-sidebar:hover .menu-body .nav-item.menuitem-active .nav-link .menu-icon{
    color: #585858 !important;
}

/*.drop_a i.menu-icon{
    color: #ffffff !important;
} */

/* 2) Common CSS Code ----------- */
/* Single Selection Start */
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 11px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 46px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 46px !important;
    padding-right: 10px!important;
}

.select2-container .select2-selection--single {
    height: 46px !important;
    border: 1px solid #e8ebf3 !important;
}
/* Single Selection End */
 
/* Multiple Selection Start */
.select2-container--default .select2-selection--multiple .select2-selection__arrow{
    top: 6px !important;
}

.select2-container--default .select2-selection--multiple .select2-search__field {
    color: #444;
    line-height: 27px !important;
    margin-left: 8px;
}

.select2-container .select2-search--inline .select2-search__field {
    padding: 2px !important;
    height: 30px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
     margin-bottom: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    height: 35px !important;
    padding-right: 10px !important;
    margin-top: 0px !important;
}

.select2-container .select2-selection--multiple {
    height: 38px !important;
}

/* Multiple Selection End */

.select2-container {
    z-index: 999 !important;
    width: 100% !important;
    display: block !important;
}

.download_csv i{
    margin-right: 10px;
}

.audience_message {
    border: 1px solid rgb(186, 224, 207);
    background-color: rgb(240, 249, 245);
}

.audience_message .icon{
    margin-right: 0;
    color: rgb(29, 75, 62);
}

.audience_message .message{
    color: rgb(29, 75, 62);
}

.chat-box-left .chat-list{
    height: auto !important;
    padding: 0 10px;
}

.badge-sm{
    font-size: 10px !important;
    padding: 6px 10px;
}

.template_chat_list .d-inline-block{
    text-align: left !important;
}

.template_chat_list .d-inline-block p{
    margin-top: 5px;
}

.template_chat_list{
    border-bottom: 1px solid rgb(208, 212, 225) !important;
}

.template_chat_list h6{
    margin-top: 0;
}

.template_chat_search{
    border-bottom: 1px solid rgb(208, 212, 225) !important;
}

.add_template_modal_preview{
    height: calc(100vh - 116px);
    overflow: auto;
}

.add_template_modal_body .phone-preview{
    position: static;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    height: calc(100vh - 177px);
}

.new_cards{
    border-left: 4px solid #2a76f4;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 22px 0px;
}

.new_cards .new_card_content{
    display: flex;  
    justify-content: space-between;
}

.new_cards .new_card_content h2{
    font-size: 20px;
    margin: 0;
    color: #2a76f4 !important;
}

.new_cards .new_card_content i{
    color: #2a76f4;
    font-size: 16px !important;
}

.new_cards .new_card_col{
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.new_cards .new_card_col p{
    border-left: 2px solid;
    padding-left: 5px;
}

.new_cards .new_card_col:first-child p{
    border-color: #04a806;
}

.new_cards .new_card_col:not(:last-child){
    border-bottom: 1px solid #d8d8d8;
}

.new_cards .new_card_col h3{
    line-height: 1;
    margin: 0;
}

.footer{
    position: relative;
}

.enlarge-menu .left-sidebar .menu-body .nav-item.menuitem-active .drop_a{
    color: #ffffff !important;
    background: #23a455 !important;
    border-radius: 0 !important;
}

.enlarge-menu .left-sidebar:hover .menu-body .nav-item.menuitem-active .drop_a{
    color: #5a5c61 !important;
    background: #ffffff !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.enlarge-menu .left-sidebar .menu-body .nav-item.menuitem-active .nav-link .menu-icon{
    color: #ffffff !important;
}

.enlarge-menu .left-sidebar:hover .menu-body .nav-item.menuitem-active .nav-link .menu-icon{
    color: #585858 !important;
}

.profile_img{
    width: 150px;
    position: relative;
    background: #EDEDED;
    padding: 5px;
    border-radius: 50%;
}

.profile_img img{
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover
}

.profile_img .edit_profile_btn{
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    background: #23a455;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    right: 0;
    bottom: 5%;
    cursor: pointer;
}

.pro_name{
    font-size: 16px;
    color: #121212;
    font-weight: 600;
}

.pass_btn{
    cursor: pointer;
}

.otp_modal .modal-content {
    border-radius: 20px;
    padding: 20px 20px;
}

.otp_modal .modal-header {
  position: relative;
  justify-content: center;
  border: none;
  text-align: center;
}

.otp_num_1 {
    font-size: 10px;
    color: #676767;
}

.otp-input-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    margin-bottom: auto;
}

.otp-input {
    width: 100%;
    /* height: 40px; */
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border: 1px solid #dedede;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

.otp-input:focus {
    border-color: #23a455;
    outline: none;
    box-shadow: 0 0 5px #23a455;
}

.resend_otp a {
    color: #23a455;
    text-decoration: underline !important;
}

.book_now_form button {
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(90deg, #23a455 0%, #31bf68 98.56%);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}

.otp_modal .modal-header .btn-close {
    position: absolute;
    opacity: 1;
    right: 11px;
    top: 20px;
    border: 1px solid;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-size: 10px;
}
.input-group > .form-control{
    border-right: none;
}

.input-group-text{
    background: none;
    border-left: none;
    font-size: 20px;
    color: #23a455;
    cursor: pointer;
}

.add_template_modal_body .chat-body-left {
    height: calc(100vh - 300px) !important;
}
.add_template_modal_body .add_template_modal_preview {
    height: calc(100vh - 210px) !important;
}

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

.reply-quote {
    background: #f0f0f0;
    border-left: 4px solid #25d366;
    padding: 8px 12px;
    margin: 8px 8px 0 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}

.reply-quote:hover {
    background: #e6e6e6;
}

.reply-quote .reply-author {
    font-size: 12.5px;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 3px;
}

.reply-quote .reply-text {
    font-size: 13px;
    color: #667781;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 230px;
}

.reply-quote .reply-icon {
    font-size: 11px;
    color: #aaa;
    margin-right: 4px;
}

.reply-msg{
    background: #fff;
    padding: 5px;
    border-radius: 10px;
}

/* .highlight-msg{
    background:#fff3cd;
    border-radius:6px;
    transition:0.3s;
} */

.highlight-msg .prev_bg{
    background-color: #5fd5a2 !important;
    transition:0.2s;
}

.highlight-msg .pre_temp_btn{
    background: #eaeaea !important;
    transition:0.2s;
}

@-webkit-keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}
@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}
.loading-dots {
  text-align: center;
  width: 100%;
}
.loading-dots--dot {
  -webkit-animation: dot-keyframes 1.5s infinite ease-in-out;
    animation: dot-keyframes 1.5s infinite ease-in-out;
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  height: 5px;
  width: 5px;
}
.loading-dots--dot:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loading-dots--dot:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.send_btn_new{
    width: 40px;
    height: 40px;
    display: grid;
    /* place-items: center; */
    border-radius: 50%;
    background: #23a455;
}

.chat-detail{
    position: relative;
}

.chat-detail .chat_down{
    position: absolute;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: #00a74b;
    border-radius: 50%;
    color: #fff;
    right: 0;
    bottom: 0;
}

.chat-box-left .chat-list .media {
    padding: 10px;
    border: 1px solid #f1f5fa;
    margin-bottom: 5px;
    border-radius: 5px;
}

.chat-box-left .chat-list .media .media-body h6{
    margin-top: 0;
    font-weight: 500;
}

.chat-box-right .chat_down{
    position: absolute;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: #00a74b;
    border-radius: 50%;
    color: #fff;
    right: 15px;
    bottom: 75px;
    font-size: 20px;
}
/* 
.business_wp_logo{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    {{request.session.BUSINESS_LOGO}}
}
/* background-image: url(https://dvchat.dvworks.in/media/business_logo/dv_icon_wc_1.jpg); */

.inst_post_td{
    display: flex;
    align-items: center;
    gap: 10px;
}

.inst_post_td img{
    width: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
    flex: 0 0 auto;
}

.inst_post_td p{
    margin-bottom: 0;
    font-size: 14px;
}

.quick_flow_accordion h2{
    margin: 0;
    line-height: 1;
}

.quick_flow_accordion .accordion-item{
    border: 1px solid #eceff5;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.quick_flow_accordion .accordion-item button{
    padding: 10px;
}

.quick_flow_accordion .accordion-body{
    padding: 10px;
}

/* --- Selection Card --- */
.sel-card {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
    background: #fff;
}
.sel-card:hover { border-color: #bbb; }
.sel-card.selected-green { border-color: #1D9E75; }
.sel-card.selected-amber { border-color: #EF9F27; }

/* Radio dot */
.radio-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.75);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.selected-green .radio-dot,
.selected-amber .radio-dot {
    background: #fff;
}
.radio-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: none;
}
.selected-green .radio-inner { background: #1D9E75; display: block; }
.selected-amber .radio-inner { background: #EF9F27; display: block; }

.card-banner {
    padding: 14px 14px 12px;
    min-height: 100px;
    position: relative;
}
.banner-green { background: #1D9E75; }
.banner-amber { background: #EF9F27; }

.card-banner-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.banner-visual {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

/* Bubbles */
.bubble {
    background: rgba(255,255,255,0.22);
    border-radius: 8px;
    font-size: 9px;
    color: #fff;
    padding: 4px 8px;
    line-height: 1.4;
    max-width: 120px;
}

/* People icons */
.people-icons {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}
.person-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.person-head {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}
.person-body {
    width: 14px;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,0.7);
}

/* Bar chart */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
}
.bar {
    width: 13px;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,0.75);
}
.bar.accent { background: #fff; }

/* Card body */
.card-body-content {
    background: #fff;
    padding: 14px 14px 12px;
}

.card-point {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
}
.card-point:last-child { margin-bottom: 0; }

.dot-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #aaa;
    margin-top: 6px;
    flex-shrink: 0;
}
.card-point strong {
    color: #111;
    font-weight: 600;
}

/* Proceed Button */
.proceed-btn {
    width: 100%;
    padding: 11px;
    background: #4A5568;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 20px;
}
.proceed-btn:hover { background: #2D3748; }

/* Chart label */
.chart-labels {
    display: flex;
    gap: 6px;
    margin-top: 3px;
}
.chart-labels span {
    font-size: 8px;
    color: rgba(255,255,255,0.85);
    width: 13px;
    text-align: center;
}

.card-banner img{
    aspect-ratio: 7 / 3;
    object-fit: cover;
    width: 100%;
}

.post-card {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    cursor: pointer;
    position: relative;
}
.post-card:hover { border-color: #bbb; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.post-card.selected { border-color: #5b6af0; box-shadow: 0 0 0 3px rgba(91,106,240,0.15); }
.post-card.has-automation { border-color: #e8e8e8; }

/* Thumbnail */
.post-thumb {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #eee;
}

/* Placeholder thumbnails (colored divs) */
.thumb-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 10px;
    line-height: 1.3;
}
.thumb-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-1 { background: linear-gradient(135deg, #e8f4fd, #c8e6f9); color: #2a6dad; font-size: 10px; }
.thumb-2 { background: #1a1a1a; }
.thumb-3 { background: #5a7a6a; }
.thumb-4 { background: #2a3a2a; }
.thumb-5 { background: linear-gradient(135deg, #f9e4d4, #f5c6a0); color: #a0522d; font-size: 10px; }
.thumb-6 { background: #f0f8f0; color: #2d6a2d; }
.thumb-7 { background: #1a2a2a; }
.thumb-8 { background: #faf8f0; color: #555; }

/* Caption */
.post-caption {
    font-size: 10.5px;
    color: #555;
    padding: 6px 8px 4px;
    line-height: 1.4;
    min-height: 36px;
}

/* Action button */
.post-action {
    padding: 0 8px 8px;
}
.btn-select {
    width: 100%;
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 0;
    border-radius: 6px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.btn-select:hover { background: #f5f5f5; border-color: #aaa; }
.btn-select.selected-state {
    background: #5b6af0;
    border-color: #5b6af0;
    color: #fff;
}
.btn-edit {
    width: 100%;
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 0;
    border-radius: 6px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-edit:hover { background: #f5f5f5; }

.modal-header-bar {
    padding: 16px 22px 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.header-left h5 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}
.header-left p {
    font-size: 12px;
    color: #777;
    margin: 0;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.step-badge {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
}
.automation-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #5b6af0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.automation-badge i { font-size: 9px; color: #fff; }

.sub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}
.sub-header-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
}
.sync-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.last-sync {
    font-size: 11.5px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sync-btn {
    font-size: 12px;
    color: #4A5568;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.15s;
}
.sync-btn:hover { background: #f5f5f5; }
.modal-footer-bar {
    border-top: 1px solid #eee;
    padding: 14px 22px;
    display: flex;
    gap: 12px;
}
.btn-go-back {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    background: #fff;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-go-back:hover { background: #f5f5f5; }
.btn-next {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #7c8cf8;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-next:hover { background: #5b6af0; }
.btn-next:disabled { background: #c5c9fb; cursor: not-allowed; }
.card-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    position: relative;
}

.upload-box, .product-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.upload-box {
    border: 2px dashed #ccc;
    padding: 50px !important;
}

.upload-box i {
    font-size: 20px;
    color: #777;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    right: 5px;
    top: 2px;
    color: red;
    cursor: pointer;
}

.add-product {
    color: green;
    cursor: pointer;
    font-weight: 500;
}

.upload_box{
    width: 80px !important;
    padding: 0px !important;
}

.limit-box {
    background: #dfeee8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.limit-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.limit-content h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.limit-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.limit-content ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.limit-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.limit-input input {
    width: 100px;
}

.btn-save {
    background: #fff;
    border: 1px solid #ccc;
    font-weight: 500;
}

.in-media-file{
    max-width: 350px;
    width: 80%;
    background-color: white !important;
    border-radius: 5px;
    padding: 15px;
}

.reverse .chat-msg{
    background-color: #9ff7ce !important;
}

.stickers{
    max-width: 250px;
    border-radius: 5px;
    padding: 0px;
    background-color: transparent !important;
}

.contact-card{
    padding: 0px;
}