body {
  background-color: #171717;
  font-family:verdana;
  color: white;
}

a {
  color: white;
}

form select {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 6px;
  margin: 3px;
  text-align: center;
  background-color: #171717;
  color: white;
}

button {
  background-color: #171717;
  color: white;
}

table {
  background-color: #000000;
  width: 100%;
}

th {
  background-color: #171717;
  padding: 10px;
  text-align: center;
  position: sticky; top: 0;
}

td {
  background-color: #171717;
  padding: 10px;
  text-align: center;
}

/* For desktops and laptops */
@media (min-width: 768px) {
  .text-wrapper {
    width: 66%;
  }
}

/* For mobile phones */
@media (max-width: 767px) {
  .text-wrapper {
    width: 96%;
  }
  .channel-card {
    width: 100%;
  }
}

.center {
  background-color: #171717;
  display: flex; /* Add flex display to center the chat-container */
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Vertically center the chat-container */
  align-items: center; /* Horizontally center the chat-container */
  padding: 10px;
  text-align: center;
}

.left {
  background-color: #171717;
  margin: auto;
  padding: 10px;
  text-align: left;
}

.center-wrapper {
  background-color: #171717;
  margin: auto;
  display: inline-block
}

.image-container {
  width: 300px;
  height: 300px;
  margin: 10px;
  border: 1px #ccc;
  border-radius: 5px;
  object-fit: contain;
}

.text-container {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px;
  max-width: 400px;
}

.text-input {
  background-color: #171717;
  color: white;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 10px;
  margin: 10px;
}

.textarea-input {
  background-color: #171717;
  color: white;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 10px;
  margin: 10px;
  max-width: 90%;
}
/* Customize the scrollbar */
.textarea-input::-webkit-scrollbar {
  width: 8px; /* Set the width of the scrollbar */
}
.textarea-input::-webkit-scrollbar-thumb {
  background-color: #333; /* Set the color of the scrollbar thumb */
}
.textarea-input::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Set the color of the scrollbar thumb on hover */
}

.rating-scale {
  display: flex;
  justify-content: space-around; /* Adjust button spacing */
  max-width: 90%;
}

.rating-scale button {
  background-color: transparent; /* Set the background to transparent */
  border: none; /* Remove default button border if desired */
  font-size: 6vw; /* Adjust the font size using viewport units */
  cursor: pointer; /* Show cursor as pointer on hover */
}

.navigation-button {
  cursor: pointer;
  user-select: none;
}

input[type="file"] {
  display: none;
}

.radio-input {
  display: inline-block;
}

.center-vertical {
  display: flex;
  align-items: center;
}

.c-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%; /* Position the box at 50% from the left edge of the viewport */
  transform: translateX(-50%); /* Center the box horizontally */
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.c-banner button {
  background-color: #fcba03;
  color: #333;
  border: none;
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.table-container {
  max-height: 300px; /* Set the maximum height for the table container */
  overflow-y: auto; /* Enable vertical scrolling */
}

/* -------- overlay - START ---------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.1s ease-out;
  flex-direction: column; /* This will stack the elements vertically */
}

.lds-overlay {
  width: 80px;
  height: 80px;
  position: relative;
}

.lds-overlay div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-overlay 1.2s linear infinite;
}
.lds-overlay div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-overlay div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-overlay div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-overlay div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-overlay div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-overlay div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-overlay div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-overlay div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-overlay div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-overlay div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-overlay div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-overlay div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-overlay {
  0%, 20%, 80%, 100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.5);
  }
}
/* -------- overlay - END ---------- */

.fade-out {
  opacity: 0;
}


/* -------- loading - START ---------- */
.lds-loading {
  display: inline-block;
  position: relative;
  margin: auto;
  width: 80px;
  height: 80px;
}
.lds-loading div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-loading 1.2s linear infinite;
}
.lds-loading div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-loading div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-loading div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-loading div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-loading div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-loading div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-loading div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-loading div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-loading div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-loading div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-loading div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-loading div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-loading {
  0%, 20%, 80%, 100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.5);
  }
}
/* -------- loading - END ---------- */


/* -------- talking - START ---------- */
.lds-talking {
  display: inline-block;
  position: relative;
  margin: auto;
  width: 80px;
  height: 80px;
}
.lds-talking div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-talking 1.2s linear infinite;
}

.icon-button {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}

.lds-talking div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-talking div:nth-child(2) {
  animation-delay: 0s;
  top: 22px;
  left: 62px;
}
.lds-talking div:nth-child(3) {
  animation-delay: 0s;
  top: 11px;
  left: 52px;
}
.lds-talking div:nth-child(4) {
  animation-delay: 0s;
  top: 7px;
  left: 37px;
}
.lds-talking div:nth-child(5) {
  animation-delay: 0s;
  top: 11px;
  left: 22px;
}
.lds-talking div:nth-child(6) {
  animation-delay: 0s;
  top: 22px;
  left: 11px;
}
.lds-talking div:nth-child(7) {
  animation-delay: 0s;
  top: 37px;
  left: 7px;
}
.lds-talking div:nth-child(8) {
  animation-delay: 0s;
  top: 52px;
  left: 11px;
}
.lds-talking div:nth-child(9) {
  animation-delay: 0s;
  top: 62px;
  left: 22px;
}
.lds-talking div:nth-child(10) {
  animation-delay: 0s;
  top: 66px;
  left: 37px;
}
.lds-talking div:nth-child(11) {
  animation-delay: 0s;
  top: 62px;
  left: 52px;
}
.lds-talking div:nth-child(12) {
  animation-delay: 0s;
  top: 52px;
  left: 62px;
}
@keyframes lds-talking {
  80%, 100% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.5);
  }
}
/* -------- talking - END ---------- */

/* -------- Chat - START ---------- */
.chat-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 66%;
  max-height: 240px;
  align-items: bottom;
}

.chat-window {
  overflow-y: scroll;
  max-height: 100%; /* Make the chat window take up the entire height */
}

/* Customize the scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #333; /* Set the color of the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Set the color of the scrollbar thumb on hover */
}

.message-container {
  display: flex;
  margin-bottom: 10px;
}

.sender-message {
  background-color: #007bff;
  color: #fff;
  font-size: 12px;
  text-align: left;
  border-radius: 15px 15px 0 15px;
  padding: 10px;
  max-width: 80%;
  margin-left: auto; /* Push sender messages to the right */
}

.receiver-message {
  background-color: #333;
  color: #fff;
  font-size: 12px;
  text-align: left;
  border-radius: 15px 15px 15px 0;
  padding: 10px;
  max-width: 80%;
  margin-right: auto; /* Push receiver messages to the left */
}

.sender-input input {
  width: 66%;
  font-size: 12px;
  border-radius: 15px 15px 15px 15px;
  padding: 10px;
  margin: 10px;
}

.sender-input button {
  display: none;
}
/* -------- Chat - END ---------- */

.exhibition-grid-container {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 16px;
}

.exhibition-card {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  height: 200px;
  text-align: center;
  background-color: #000000;
  color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; /* Add transition for smooth effect */
}

.exhibition-card:hover {
  transform: scale(1.05); /* Scale up the card on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow effect on hover */
}

.exhibition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the card */
}

.exhibition-card p {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Background for text for better readability */
  padding: 10px;
  margin: 0;
}

.exhibition-header.active + .exhibition-grid-container {
  display: grid;
}

.exhibition-header {
  cursor: pointer; /* Make it clear that the header is clickable */
  background-color: #000000; /* Initial background color */
  padding: 10px;
  transition: background-color 0.3s ease; /* Smooth transition for the color change */
}

.exhibition-header:hover {
  background-color: #101010; /* Change to a different color on hover */
}


.channel-grid-container {
  display: flex; /* Use flexbox */
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  justify-content: center; /* Center items horizontally */
  gap: 16px;
  padding: 16px;
}

.channel-card {
  position: relative;
  border-radius: 5px;
  width: 300px; /* Fixed width */
  height: 300px; /* Fixed height to make it square */
  text-align: center;
  background-color: #000000;
  color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; /* Add transition for smooth effect */
}

.channel-card:hover {
  transform: scale(1.03); /* Scale up the card on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow effect on hover */
}

.channel-card a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Background for text for better readability */
  box-sizing: border-box;
}

.channel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the card */
}

p {
  text-align: center;
  margin-left: 48px;
  margin-right: 48px;
}

.action-button {
  border: 1px solid #333;
  border-radius: 48px;
  padding: 12px 16px;
  margin: 3px;
  text-align: center;
  background-color: #007bff;
  color: white;
  font-size: large;
  cursor: pointer;
}

.custom-button {
  border: 1px solid #333;
  border-radius: 48px;
  padding: 12px 16px;
  margin: 3px;
  text-align: center;
  color: white;
  cursor: pointer; /* Makes it clear that the element is clickable */
}

.arrow-button {
  border: 1px solid #333;
  border-radius: 12px 48px 48px 12px; /* Curving to the right */
  padding: 12px 16px;
  margin: 3px;
  text-align: center;
  color: white;
  cursor: pointer; /* Makes it clear that the element is clickable */
}

.arrow-l-button {
  border: 1px solid #333;
  border-radius: 48px 12px 12px 48px; /* Curving to the right */
  padding: 12px 16px;
  margin: 3px;
  text-align: center;
  color: white;
  cursor: pointer; /* Makes it clear that the element is clickable */
}

.arrow-m-button {
  border: 1px solid #333;
  border-radius: 12px 12px 12px 12px; /* Curving to the right */
  padding: 12px 16px;
  margin: 3px;
  text-align: center;
  color: white;
  cursor: pointer; /* Makes it clear that the element is clickable */
}

.save-button {
  border: 1px solid #333;
  border-radius: 24px;
  padding: 8px 16px;
  margin: 3px;
  text-align: center;
  background-color: #007bff;
  color: white;
  font-size: large;
  cursor: pointer;
  
  /* Add these properties for the anchor tag */
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
}

/* Add hover state for better user experience */
.save-button:hover {
  background-color: #0069d9;
}

.delete-button {
  border: 1px solid #333;
  border-radius: 24px;
  padding: 8px 16px; /* Added horizontal padding for better button appearance */
  margin: 3px;
  text-align: center;
  background-color: #dc3545;
  color: white;
  font-size: large;
  cursor: pointer; /* Makes it clear that the element is clickable */
}


.settings-select {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 6px;
  margin: 3px;
  text-align: center;
  background-color: #171717;
  color: white;
  font-size: large;
}

table {
  border-collapse: separate; /* Allows for rounded corners */
  border-spacing: 5px; /* Space between cells for transparency effect */
  width: 100%; /* Adjust as needed */
  background-color: rgba(255, 255, 255, 0);
}

th, td {
  background-color: #101010; /* Adjust as needed */
  border: none; /* Remove borders for a cleaner look */
  border-radius: 12px; /* Rounded edges for cells */
  padding: 10px; /* Adjust padding as needed */
  text-align: center; /* Or center, based on your preference */
}

/* --------- Footer - START --------- */
.contact-social {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-social a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.contact-social a:hover {
  text-decoration: underline;
}

.contact-social svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.3s;
}

.contact-social svg:hover {
  fill: #0077b5; /* LinkedIn blue */
  transform: scale(1.1);
}

.social-media {
  margin-top: 20px;
}

.social-media a svg {
  width: 40px;
  height: 40px;
  fill: #0077b5; /* LinkedIn blue */
  transition: transform 0.3s;
}

.social-media a svg:hover {
  transform: scale(1.1);
}
/* --------- Footer - END --------- */


.config-wrapper {
  flex-direction: column;
  gap: 8px;  /* Space between badges */
  padding: 4px 0;  /* Top and bottom padding */
}

.config-badge {
  padding: 6px 12px;
  border-radius: 12px;
}

.language {
  background-color: #333;
  color: #ffffff;
}

.age {
  background-color: #333;
  color: #ffffff;
}

.gender {
  background-color: #333;
  color: #ffffff;
}


.audio-player {
  width: 300px;
  padding: 10px;
}

.timeline {
  background: #e0e0e0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress {
  background: #007bff;
  width: 0%;
  height: 100%;
  border-radius: 2px;
  position: absolute;
}

.time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.status-container {
  width: 100%;
  max-width: 18.75rem;
  margin: 0.5rem auto 1.5rem auto;
}
.status-bar {
  background: #e0e0e0;
  width: 100%;
  height: 0.25rem;
  border-radius: 0.125rem;
  position: relative;
  margin-bottom: 0.3125rem;
}
.status-progress {
  background: #007bff;
  height: 100%;
  border-radius: 0.125rem;
}
.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
}

.status-message {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #171717;
  z-index: 1001;
  padding: 0.625rem 0; /* 10px 0 */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3); /* 0 2px 4px */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-spacer {
  height: 3.75rem; /* 60px */
}