body {
  background-image: url('https://images.unsplash.com/photo-1539634936668-036d13a9cc3b');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  color: white;
  font-family: Arial, sans-serif;
}
.content {
  background-color: rgba(50, 50, 50, 0.7); /* darker gray transparent color */
  padding: 40px;
  border-radius: 25px;
  text-align: center;
}
h1 {
  font-size: 2em;
  line-height: 1.5; /* increased line spacing */
  margin: 0;
}
h3 {
  font-size: 1.5em;
  line-height: 1.5; /* increased line spacing */
  margin: 0;
}
.read-more {
  color: white;
}


.label {
  color: white;
}

.wide-content {
  width: 70%;
  background-color: rgba(60, 60, 60, 0.8);
  border-radius: 15px;
  padding: 20px;
  overflow: auto; 
  
}

.notification {
  background: transparent;
  border-radius: 15px;
  padding: 20px;
  color: white;

}

.wide-url {
  margin-top: 70px;
  width: 40%;
  background-color: rgba(60, 60, 60, 0.8);
  border-radius: 15px;
  padding: 20px;
}

.wide-content-box {
  background-color: rgba(60, 60, 60, 0.8); /* white with 80% opacity */
  padding: 20px; /* optional: add some padding so the content doesn't touch the edges */
  border-radius: 15px; /* optional: round the corners of the rectangle */
}

.column {
  margin: 0 5px; /* Adjust this value as needed */
}

.authToken {
  width: 50%; /* Adjust this value as needed */
}

.table-header {
  color: white;
}

.navbar {
  position: fixed;
  top: 10px;
  width: 90%;
  height: 60px;
  z-index: 100;
  background-color: rgba(248, 248, 248, 0.6);
  border-radius: 15px;
}


.footer {
  bottom: 0;
  background-color: transparent; /* Adjust color as needed */
  color: white; /* Adjust color as needed */
  text-align: center;
}

.is-dark {
  background-color: rgb(187, 56, 89);
  background-image: linear-gradient(rgba(25, 181, 254, 0.6),rgba(246, 36, 89, 0.6)),linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?dpr=1&auto=format&fit=crop&w=1500&h=1001&q=80&cs=tinysrgb&crop=');
}
.navbar-item {
  font-weight: bold;
}
.navbar-item .button{
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 20px;
  height: 45px;
}

.transparent-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background-color: rgba(30, 167, 140, 0.7) !important; 
  border-radius: 15px;
  overflow: hidden;
}

.transparent-table th, .transparent-table td {
  padding: 8px !important;
  color: rgb(255, 255, 255) !important;
  font-size: small !important;
}

.main-content {
  max-height: calc(100vh - 60px - 40px);
  width: 100%;
  position: center;
  overflow-y: auto; /* enable vertical scrolling */
  padding: 20px;
  text-align: center;
}


@media screen and (max-width: 1000px) {
  .navbar, .footer {
    display: none;
  }
}

#messageint {
  background-color: rgba(185, 184, 183, 0.549);
  color: white;
  border: none;
  resize: none; /* Disables manual resize */
  overflow: hidden; /* Keeps the content in the textarea */
  min-height: 40px;
  margin-bottom: 20px;
}

#messageint:active, #messageint:focus {
  height: auto; /* Auto resize when active or focused */
}

#response {
  max-height: 500; /* Adjust this value as needed */
  overflow-y: auto;
   
}
#messageint::placeholder { /* Selects the placeholder of the input with id "messageint" */
  color: white;
}

.columns.wide-content {
  margin-bottom: 20px; /* Adjust this value as needed */
}

.copy-btn-clicked {
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
  color: green;
}