html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

input, button {
  font-size: 16px;
  border-radius: 50px; /* Add rounded corners to input and button elements */
  padding: 12px 24px;
}

button {
  cursor: pointer;
  background-color: #2c2c2c;
  color: #ffffff;
  border: none;
}

button:hover {
  background-color: #5a5a5a;
}

button.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  background-image: none;
}

button.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}


/* Semi-transparent table */
table {
  width: 80%;
  margin: 0 auto;
  border-collapse: separate;
  border-radius: 10px;
  overflow: hidden;
}



th:first-child,
td:first-child {
  border-top-left-radius: 10px; /* Add rounded edges to the top-left corner of the first cell */
  border-bottom-left-radius: 10px; /* Add rounded edges to the bottom-left corner of the first cell */
}

th:last-child,
td:last-child {
  border-top-right-radius: 10px; /* Add rounded edges to the top-right corner of the last cell */
  border-bottom-right-radius: 10px; /* Add rounded edges to the bottom-right corner of the last cell */
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) { /* size should be the breakpoint you desire */
 .sub-logo1 {
   left: 0;
 }

 .sub-logo2 {
   right: 5;
 }
}

  .logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }

  .sub-logo {
    width: 100%;
    max-width: 240px;
    margin-bottom: 1rem;
  }

  .sub-logo1,
  .sub-logo2 {
    position: static;
    transform: none;
	margin: 0 10px;
  }
}




input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}

.submit-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

label {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

form {
  margin-bottom: 2rem;
}

tr {
  background: transparent;
}

table, tbody {
  background-color: rgba(255, 255, 255, 0.7);
}

.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.main-logo {
  max-width: 150px;
  height: auto;
}


.main-logo-img {
  max-width: 100%;
  height: auto;
}


button.btn-gradient {
  background: linear-gradient(135deg, #f15f79 0%, #19a0a1 100%);
}

button.btn-gradient:hover {
  background: linear-gradient(135deg, #e5566d 0%, #139b97 100%);
}


button {
  transition: background-color 0.3s ease;
}

.song-request {
  background-color: #ffffff;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
}

.page-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.page-wrapper.fade-out {
  opacity: 0;
}

.fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

.fade-out {
  animation: fadeOut ease 2s;
  -webkit-animation: fadeOut ease 2s;
  -moz-animation: fadeOut ease 2s;
  -o-animation: fadeOut ease 2s;
  -ms-animation: fadeOut ease 2s;
}

.slide-out {
  max-height: 100%;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

.slide-out.hide {
  max-height: 0;
  opacity: 0;
}

.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-logo {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.3s;
}

.sub-logo1 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-logo2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-logo-container {
  position: absolute;
  top: 100%;
  left: 50%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sub-logo-container .sub-logo {
  margin: 0 10px;
  cursor: pointer;
}

.logo-container:hover .sub-logo-container {
  opacity: 1;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 150px;
}

.logo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
  margin-bottom: 2rem;
}

.logo, .sub-logo {
    position: absolute;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.logo {
    z-index: 2;
}

.sub-logo {
    z-index: 1;
    opacity: 0;
}

.sub-logo1 {
    left: -175px;
}

.sub-logo2 {
    right: 50px;
}


