:root {
    --first-color: rgb(0,155,200);
    --second-color: rgb(202, 95, 95);
    --third-color: rgb(218,218,218);
  }
  body {
    zoom: 0.8;
  }
  @media (max-width: 600px) {
    body {
      zoom: 0.6; /* Increase zoom level for smaller screens */
    }
  }
  @media (min-width: 601px) and (max-width: 1600px) {
    body {
      zoom: 0.8; /* Slightly increase zoom level for medium screens */
    }
  }
  html, body {
    height: 100%;
}


.homepage-shortcut {
    width: 19%;
}

.live-agent-connect-session-table-body-cell {
width:100px;
}

.live-agent-connect-session-table-header-cell {
color:var(--first-color);
width:100px;
}

#user-list-contents-body tr:hover #remove-user-button {
    color: var(--second-color);
  }
  
  #remove-user-button {
    color: var(--third-color);
  }
  

.blue-text {
    color: blue;
}

#bar-chart-container, #pi-chart-container {
    display: flex;
    padding: 30px;
    align-content: center;
    position: relative;
    flex-wrap: wrap;
}

#messageStatusPieChart, #messageStatusBarChart {
    display: flex;
    height:240px;
}

#campaign-summary {
    display: flex;
}

.campaign-info-table {
    font-size: medium;
    border-collapse: collapse;
    margin-top: 0px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    box-shadow:none;
    margin-left:5px;
}
.campaign-info-table th, .campaign-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.campaign-info-table th {
    background-color: #f2f2f2;
}

#campaign-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    background: white;
    border: solid 1px rgb(0, 155, 200);
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#campaign-report-content table tbody {
    max-height: 40vh;
}

#chart-container {
    height: 250px;
    width: 450px;
}

.box-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.box-value {
  font-size: 24px;
  font-weight: bold;
}

.box-max {
  font-size: 14px;
  color: #888;
}

table {
  border-collapse: collapse;
  margin-top: 20px;
  border-color:white;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  overflow: hidden;
}

tbody {
  overflow: auto;
  display: block;
  border-color:white;
}

thead, tbody tr {
  display: table;
  table-layout: fixed;
  background-color: white;
}


tbody::-webkit-scrollbar {
  width: 0px;
}

tbody::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
}

tbody::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  border-radius: 8px;
}

#refresh-button {
  margin-top: 10px;
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form[name="addEntryForm"] tbody tr:hover {
    background-color: inherit !important;
  }
  
.list-manager-cell {
    text-align: left;
    text-indent: 10px;
    overflow: hidden;
}

#conversation-reporting-results table {
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 0px;
}

#conversation-reporting-results {
    overflow-y:hidden;
    margin-bottom: -2px;
}

#conversation-reporting-results th {
    padding: 2px;
    border: 1px solid #ddd;
    text-align: left;
    background-color: white;
    box-shadow: none;
    overflow: hidden;
    line-break: anywhere;
}

#conversation-reporting-results td {
    padding: 2px;
    border: 1px solid #ddd;
    text-align: left;
    background-color: white;
    box-shadow: none;
    overflow: hidden;
    line-break: anywhere;
}

.create-campaign-form-cell {
    padding: 10px 0px 10px 0px;
    text-align: left;
    width: 150px;
}

.create-campaign-form-header-cell {
    padding: 10px 0px 10px 0px;
    color:var(--first-color);
    width:150px;
    text-align:left;
}

#conversation-reporting-results thead {
    position: sticky;
    top: 0;
    display: block;
    color: rgb(0, 155, 200);
    background-color:revert;
}

#conversation-reporting-results tbody {
    display: block;
    max-height: calc(100vh - 117px);
    overflow-y:scroll;
    overflow-x:auto;
    scrollbar-width: none;
}

.edit-user-button {
    background-color:white;
    border:none;
    color:rgb(0,155,200);
    cursor:pointer;
}

.scrollable-cell {
    max-height: 300px;
    overflow-y: auto;
    word-wrap: break-word;
}

#uxf-widget-flex-button-container {
  display: block;
}

#widget-name {
    color: white;
    top: 11px;
    position: relative;
    font-size: 14px;
}

@keyframes swipeIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes swipeOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

#uxf-widget-flex-div {
    position: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    right: 0px;
    width: 22%;
    height: calc(100% - 102px);
    background-color: rgb(0, 155, 200);
    font-size: 20px;
    border: none;
    outline: none;
    cursor: initial;
    min-height: 440px;
    margin-top: 0px;
    z-index: 9999;
    border: solid 1px rgb(0, 155, 200);
    line-height: 25px;
    min-width: 350px;
    padding-right: 0px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s, opacity 0.5s ease-out;
    border-radius: 0px;
    overflow: hidden;
}

#uxf-widget-flex-div.show {
    visibility: visible;
    opacity: 1;
    animation: swipeIn 0.5s ease-out forwards;
}

#uxf-widget-flex-div.hide {
    visibility: hidden;
    opacity: 0;
    animation: swipeOut 0.5s ease-out forwards;
}

#uxf-widget-flex-button {
    position: fixed;
    bottom: 4px;
    right: -5px;
    width: 124px;
    height: auto;
    z-index: 9999;
    border-radius: 10px;
}

.uxf-chat-flex-banner {
    background: linear-gradient(180deg, #4b4b4b, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px 10px 0 0;
    width: 100%;
    overflow: hidden;
    height: 45px;
    max-height: 45px;
    min-height: 45px;
    border-radius: 0px;
}

#page-banner {
    width: 100%;
    height: 100px;
    justify-items: center;
    display: flex;
    background-color: rgba(0, 155, 200, 1.0);
    flex-wrap: wrap;
    color: white;
    position: absolute;
    overflow: hidden;
}

#bannerImage {
    height:100px;
}

#platformNameBannerDisplay {
    font-family: monospace;
    font-size: xx-large;
    align-content: center;
    padding-left: 20px;
    flex-grow: 4;
}

#companyNameBannerDisplay {
    font-family: monospace;
    font-size: xx-large;
    align-content: center;
    padding-right: 20px;
}

#logoBannerDisplay {
    height: 100px;
}

#uxf-message-flex-container {
    order: 0;
    position: relative;
    top: 0%;
    right: 0px;
    height: calc(100% - 128px);
    width: 100%;
    overflow-y: auto;
    border: 0px solid #242424aa;
    padding: 0px 0px 0px 0px;
    margin-top: 0%;
    border-radius: 0px;
    background-image: url(https://uxf-web-files.s3.eu-west-2.amazonaws.com/UX+First/container-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.user-input-flex {
    color: rgb(0, 0, 0);
    flex-grow: 2;
    margin: 0;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    color: black;
    border-color: white;
    font-size: 12px;
    outline:none;
    font-size: 14px;
}

.uxf-avatar-image {
    position: relative;
    top: 18px;
    transform: translate(0%, -50%);
    display: flex;
    height: 35px;
    min-width: 74px;
    max-width: 74px;
    min-height: 35px;
    max-height: 35px;
}

.agent-message, .message .agent-message {
    padding: 0 10px;
    overflow: hidden;
    color: black;
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
    margin-left: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: left;
    display: inline-block;
    line-height: 25px;
}

.agent-message > span {
    color: black;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: 490;
    margin-right: 42px;
    margin-left: -3px;
    text-align: left;
}

.agent-image {
    width: 20px;
    height: auto;
    position: relative;
    padding: 0px;
    margin: 0px;
    top: 5px;
    left: 0px;
    margin-left: 0px;
}

.user-message, .message .user-message {
    padding-right: 6px;
    overflow: hidden;
    color: black;
    font-size: 14px;
    text-align: right;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 4px;
    margin-left: 42px;
    font-weight: 490;
    padding-left: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
    line-height: 25px;
    display: block;
    background-position: right;
}

.system-message, .message .system-message {
    background-color: rgba(255,255,255,0);
    padding: 0 10px;
    overflow: hidden;
    color: black;
    font-size: 9px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 10px;
}

.system-message > span {
    color: black;
}

.tick-icon {
    width: 12px;
    height: 12px;
    color: lime;
    vertical-align: middle;
    margin-right: -3px;
    margin-left: 10px;
}

.option-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: #333;
    border: none;
    font-size: 12px;
    padding-top: 0px;
    margin: 0px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    padding-bottom: 0px;
    justify-content: space-between;
    gap: 5px;
    display: inline-block;
    margin-left: 11px;
    padding-bottom: 15px;
}

.option-button:hover {
    border: 2px solid #f27200;
    font-size: 14px;
}

.option-button {
    border: 2px solid rgb(237, 237, 237);
    margin: 0px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    max-width: 100%;
    padding-bottom: 0px;
    display: block;
    background-color: white;
    margin-top: 6px;
    margin-right: 0px;
    color: black;
    line-height: 15px;
    padding-top: 0px;
    padding-left: 8px;
    padding-right: 4px;
    vertical-align: middle;
    margin-bottom: 0px;
    border-color: lightgrey;
}

.agent-timestamp, .user-timestamp {
    font-weight: 400;
    font-size: 8px;
}

#uxf-send-button-flex svg {
    fill: rgb(131,131,131);
    width: 20px;
    min-width: 20px;
    margin-bottom: 0px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    cursor: pointer;
}

.flex-grow {
    flex-grow: 2;
}

.loading-bar {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #f27200;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.2) 75%);
    background-size: 200% 100%;
    text-align: left;
    line-height: 17px;
    color: white;
    animation: loading 2s linear infinite;
    flex-wrap: wrap;
    font-size: 11px;
    justify-content: flex-start;
}

#loading-text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: left;
    color: white;
    font-size: 10px;
    padding-left: 5px;
    top: -61px;
}

#uxf-customer-logo {
    position: relative;
    scale: 0.2;
    top: -105px;
    right: 5px;
}

#loading-bar {
    position: relative;
    top: -30px;
    align-items: center;
    height: 5px;
    display: flex;
}

#close-btn {
    position: absolute;
    background: none;
    border: none;
    z-index: 9999;
    color: rgb(255 255 255);
    fill: rgb(255 255 255);
    top: -9px;
    right: 13px;
    height: 62px;
    width: 20px;
    scale: 0.8;
    border: none;
}

.svg-button {
    position: absolute;
    top: 9px;
    right: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
}

.svg-button svg {
    width: 24px;
    height: 24px;
}

.loading-container {
    width: 100%;
    padding-right: 0px;
    position: relative;
    flex-direction: column;
    display: flex;
    top: -45px;
    left: 0px;
    z-index: 9999;
}

.loading-text {
    padding-left: 12px;
    font-size: 16px;
    color: white;
    position: absolute;
    top: -61px;
    padding-right: 46px;
    text-align: left;
}

.input-section {
    width: 100%;
    background: linear-gradient(0deg, black, transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 83px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-radius: 0px;
}

.input-container-flex {
    justify-content: center;
    display: flex;
    background-color: white;
    font-size: 14px;
    padding-left: 5px;
    color: rgb(0, 0, 0);
    margin-bottom: 22px;
    align-items: center;
    width: 90%;
    position: relative;
    top: 0;
    border-radius: 4px;
    margin-top: 0%;
    height: 32px;
    overflow: hidden;
    border: 1px solid grey;
    margin-left: 0px;
}

.user-input-flex {
    display: flex;
    flex-grow: 2;
    height: 100%;
    border: none;
    padding-left: 10px;
    position: relative;
    margin-left: -5px;
    margin-right: 0px;
}

.uxf-send-button-flex #uxf-send-button-flex {
    padding-right: 5px;
    padding-left: 0px;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    scale: 0.9;
    background-color: transparent;
    border: none;
}

.footer-container {
    background-color: #000000;
    width: 100%;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

#container-background {
    content: "";
    background-image: url("");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5; /* Set the desired opacity value */
    z-index: -1;
}

.widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

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

* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

tr:hover td:not(:last-child) {
    cursor: pointer;
}

body, a {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
    font-size: 14px;
    text-decoration: none;
    color: inherit;
    width:100%;
}

#title-block {
    width: 48%;
    border: 1px solid #000;
    padding: 10px;
}

.filter-dropdown {
    margin-bottom: 10px;
}

#smartphone-screen::-webkit-scrollbar {
    width: 2px;
}

#edit-campaign-smartphone-screen::-webkit-scrollbar {
    width: 2px;
}

#tbody::-webkit-scrollbar {
    width: 2px;
}

.tbody::-webkit-scrollbar {
    width: 2px;
}

#smartphone-screen::-webkit-scrollbar-thumb {
    background-color: #808080;
    border-radius: 5px;
}

#edit-campaign-smartphone-screen::-webkit-scrollbar-thumb {
    background-color: #808080;
    border-radius: 5px;
}

#smartphone-screen::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

#edit-campaign-smartphone-screen::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

table {
    border-collapse: collapse;
    margin-top: 15px;
    font-size:14px;
}

td:first-child {
    color: #000;
}

th, td {
    padding: 8px;
}

a {
    text-decoration: none;
    color: #333;
}

.template-data-container {
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}

.form-section {
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    border-color: rgb(0, 155, 200);
    padding: 10px 10px 3px 10px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
    border-style: solid;
    background-color: white;
}

#create-campaign-smartphone-emulator {
    background-image: url(https://uxf-web-files.s3.eu-west-2.amazonaws.com/whatsapp-broadcast-studio/images/smartphone-background.jpg);
    background-size: contain;
    background-position: center;
    width: 280px;
    background-repeat: no-repeat;
    height: 548px;
    margin-top: 0px;
    display: block;
    margin-left: 0px;
}

#edit-campaign-smartphone-emulator {
    background-image: url(https://uxf-web-files.s3.eu-west-2.amazonaws.com/whatsapp-broadcast-studio/images/smartphone-background.jpg);
    background-size: contain;
    background-position: center;
    width: 280px;
    background-repeat: no-repeat;
    height: 548px;
    margin-top: 0px;
    display: block;
    margin-left: 0px;
}

textarea {
    resize: none;
}

.whatsapp-message-header {
    font-size: 12px;
    font-weight: bold;
    align-content: flex-start;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding: 7px 7px 3px 7px;
}

.whatsapp-message-body {
    font-size: 11px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding: 3px 7px 3px 7px;
}

.whatsapp-message-footer {
    font-size: 10px;
    font-weight: lighter;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding: 3px 7px 3px 7px;
}

.action-button,
.submit-button,
.cancel-button,
.go-button,
#delete-button,
#save-button,
#edit-button,
#cancel-button,
#return-button {
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}

.action-button, #edit-button, #return-button, #save-button {
    border: solid 3px rgb(0, 155, 200);
}

.submit-button,
#submit-button {
    border: solid 3px rgb(0, 155, 200);
    height: 25px;
    width: 60px;
}

.cancel-button,
#cancel-button {
    border: solid 3px var(--second-color);
    height: 25px;
    background-color: white;
    border-radius: 5px;
    width: 60px;
}

.go-button {
    border: solid 3px rgb(115, 199, 94);
}

#form-action-button-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-around;
    padding: 10px 10px 10px 10px;
    margin-top: 30px;
}

#campaign-details-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-content: center;
    flex-wrap: wrap;
    width: fit-content;
    align-items: flex-start;
}

#run-date-block {
    width: 120px;
}

#run-time-block {
    width: 90px;
    margin-bottom: 30px;
}

#campaign-schedule-type-block {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    margin-left: -8px;
    font-weight: 600;
    color: var(--first-color);
}

#repeat-campaign-block {
    display: flex;
}

#delete-button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: rgb(218, 218, 218);
}

#list-filters-container {
    display: flex;
    justify-content: flex-start;
}

#template-section-buttons {
    display: flex;
    justify-content: flex-start;
    height:30px;
}

#title-bar {
    text-align: left;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    font-weight: bold;
    color: rgb(0, 155, 200);
    padding-left: 2px;
    font-size: x-large;
    position:relative;
    height: 30px;
    width: 100%;
}

#main-section {
    margin: 100px 0px 0px 205px;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    position: absolute;
    top: 0px;
    padding-left: 30px;
    width: calc(100% - 255px);
}

.create-template-button-form-section {
    border: 1px solid;
    border-color: rgb(0, 155, 200);
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
}

.homepage-tutorial-step-div {
    padding-left: 15px;
    padding-left: 15px;
    padding-top: 0px;
    padding-bottom: 20px;
    margin-bottom: 10px;
    color: black;
}

#get-started-steps {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding-top:0px;
    padding-bottom:0px;
    margin-bottom:0px;
}

.selected-image {
    border: 4px solid rgb(0, 155, 200);
    border-radius: 10px;
}

#campaign-flex {
    display: flex;
    width: calc(100% - 55px);
    margin-top: 30px;
}

#list-container {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.custom-switch {
    margin-left: 53px;
}

.campaign-detail-table-header-cell {
    color:var(--first-color);
    text-align: left;
}

.campaign-detail-table-body-cell {
    text-align:left;
}

#campaign-button-block {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: auto;
    padding: 10px 10px 10px 10px;
}

#campaign-details-list-and-options {
    display: flex;
    flex-direction: column;
    width: 1200px;
    border: solid 2px var(--first-color);
    border-radius: 5px;
    background-color: white;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
    padding:20px;
}

#campaign-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 30px;
}

#add-campaign-container {
    display: none;
    flex-direction: row;
    border-radius: 8px;
    max-width: calc(100% - 62px);
    justify-content: flex-start;
}
#create-campaign-title #edit-campaign-title {

    padding: 10px 20px 10px 10px;
    margin-bottom: 0px;
}
#campaign-name-list-and-buttons {
    border: solid 2px var(--first-color);
    border-radius: 10px;
    background-color: white;
    padding:20px;
    margin-right: 30px;
}
#alert-message {
    width: 367px;
    padding-bottom: 30px;
    font-style: italic;
    color: red;
    padding-left: 10px;
}
.homepage-box {
    background-color: #fff;
    border: solid 2px var(--first-color);
    border-radius: 5px;
    width: 270px;
    margin: 0px 30px 30px 0px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 30px;
    color: var(--first-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}
#homepage-content {
    display: flex;
    text-align: left;
    color: rgb(84, 84, 84);
    flex-direction: column;
    flex-wrap: nowrap;
    padding-top: 8px;
    position: relative;
    max-height: calc(100% - 130px);
    overflow-y: auto;
    scrollbar-width: none;
    width: 100%;
}
.custom-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  .custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .custom-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .custom-switch label:after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background-color: white;
    top: 4px;
    left: 4px;
    transition: transform 0.3s;
  }

  .custom-switch input:checked + label {
    background-color: var(--first-color);
  }

  .custom-switch input:checked + label:after {
    transform: translateX(26px);
  }

  .form-section::-webkit-scrollbar {
    width: 10px;
}

.form-section::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
}

.form-section::-webkit-scrollbar-track {
    background-color: #ddd;
    border-radius: 10px;
    padding-right: 5px;
}

#list-manager-container {
    max-width: 1700px;
    padding: 20px 20px 0px 20px;
    background: white;
    border-radius: 5px;
    height: calc(100% - 300px);
    min-width: 1300px;
    overflow: hidden;
}

#create-template-container {
    width: 600px;
    display: flex;
    flex-direction: column;
    max-height: 97vh;
    overflow-y: auto;
}

#buttonText1, #buttonText2, #buttonText3 {
    display: block;
    width: calc(100% - 6px);
}

#template-list-container {
    height: 100%;
    overflow-y: auto;
}

#upload-list-button-container {
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    width: 400px;
    position: relative;
    align-content: center;
    flex-wrap: wrap;
    display: flex;
}

.media-info, .media-info-header {
    display: flex;
    width: 15%;
    padding: 5px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.media-info-header {
    font-weight:600;
    color:rgb(0,155,200);
    justify-content: center;
}

.create-template-media-info {
    width:23%;
}

.create-template-media-info-header {
    width:23%;
}

#quick-links {
    width: calc(100% - 320px);
    display: flex;
    justify-content: space-evenly;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    padding: 30px 0px 10px 0px;
    height: 126px;
    margin-bottom: 25px;
    border-color: var(--first-color);
    background: linear-gradient(0deg, rgba(0,155,200,0.2), white);
}

#selectFileButton {
    margin: 0px 0px 13px 0px;
    width:202px;
}

#submit-button:disabled {
    background-color: #ffffff;
    color: #ffffff;
    cursor: not-allowed;
    width: 60px;
  }

  #submit-button:enabled {
    color: #000000;
  }

  #submit-button:disabled:before {
    content: '';
    position: relative;
    border: 3px solid transparent;
    border-top-color: #3498db;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    animation: spin 1s linear infinite;
    margin-left: 14px;
    display: block;
  }

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

  #please-wait-notes {
    display: block;
    font-style: italic;
    padding-left: 300px;
  }

  #faq-section {
    border: 2px solid var(--first-color);
    border-radius: 7px;
    background-color: white;
    max-width: 94%;
    position: absolute;
    top: 180px;
    max-height: calc(100% - 208px);
    overflow-y: auto;
  }

  #progress-bar-container {
    width: 229px;
    height: 24px;
    background-color: #f0f0f0;
    border-radius: 4px;
    border: solid 1px darkgrey;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  #progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    position: relative;
  }

  #progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }

    .user-column,
    .agent-column {
        text-align: left;
    }

    .user-info-column {
        text-align:left;
    }

    #title-and-button-container {
        display: flex;
        justify-content: flex-start;
        align-content: center;
        flex-wrap: wrap;
        min-width: 1306px;
        padding-top: 23px;
        width: 100%;
        flex-direction: row;
        overflow: hidden;
    }

    .message-user {
        color: var(--first-color);
        line-height: 20px;
        white-space: normal;
    }
    .message-agent {
        color: green;
        line-height: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        padding-left: 50px;
        white-space: normal;
    }
    .message-template {
        color: black;
        line-height: 20px;
    }

    #add-single-user-button-container {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        display: flex;
        width: 400px;
        justify-content: flex-start;
        align-content: center;
        flex-wrap: wrap;
    }

    .opt-in-toggle {
        background: none;
        border: none;
        cursor: pointer;
        color: inherit;
        padding: 5px;
      }
      
      .opt-in-toggle i {
        font-size: 16px;
      }
      #user-list-contents-table {
        display: block;
        width: 100%;
        overflow: hidden;
        margin-top: 0px;
      }
      #settings-feedback {
        position: relative;
        margin-top: 20px;
        width: fit-content;
        padding: 10px;
        border-radius: 7px;
        color: green;
        background-color: rgba(55, 200, 0, 0.2);
        margin-bottom: -20px;    
      }
      #profile-dropdown-container {
        position: absolute;
        right: 270px;
        top: 25px;
        width: 301px;
        z-index: 9999;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #feb47b);
        border-radius: 5px;
      }
      .campaign-table-header-cell-l {
        text-align: left;
        width: 300px;
        padding: 8px 0px 8px 0px;
        background-color: white;
        text-indent: 10px;
      }
      .campaign-table-header-cell-s {
        text-align: center;
        width: 70px;
        padding: 8px 0px 8px 0px;
        background-color: white;
      }
      .campaign-table-body-cell-l {
        width: 300px;
        text-align: left;
        text-indent: 10px;
        padding: 8px 0px 8px 0px;
      }
      .campaign-table-body-cell-s {
        width: 70px;
        text-align: center;
        padding: 8px 0px 8px 0px;
      }
      #campaignSearch {
        margin-bottom: 20px;
        padding: 8px;
        width: 400px;
        box-sizing: border-box;
        margin-top: 23px;
        border-radius: 4px;
        border: 1px solid rgb(0, 155, 200);
      }
      #campaignReportSearch {
        padding: 8px;
        box-sizing: border-box;
        border-radius: 5px;
        margin-left: 20px;
        height: 28px;
      }
      .campaign-cell {
        border: 1px solid lightgrey;
        padding:5px;
      }
      .box-title {
        font-size: 18px;
        font-weight: bold;
      }
  
      .box-value {
        font-size: 24px;
        font-weight: bold;
      }
  
      .box-max {
        font-size: 14px;
        color: #888;
      }
  
      #resources-content {
        padding: 20px;
        text-align: left;
        background: white;
        border: solid 1px rgb(0, 155, 200);
        border-radius: 3px;
        min-width: 600px;
        margin-top: 20px;
      }
  
      .download-link {
        display: inline-block;
        padding: 10px 20px;
        background-color: white;
        color: black;
        text-decoration: none;
        border-radius: 3px;
        margin-top: 20px;
        border: 2px solid rgb(0, 155, 200);
      }
  
      .download-link:hover {
        background-color: rgba(0,155,200,0.2);
      }

      .session-row {
        cursor:none;
      }

      .user-info-label {
        width: 80px;
        text-align: left;
        font-weight: 600;
        color: rgb(0, 155, 200);
      }

      .user-info-value {
        width:220px;
      }

      .user-info-messages-header {
        width: 105px;
      }

      .user-info-messages-body {
        width: 143px;
        text-align:center;
        overflow: hidden;
        max-width: 143px;
              }