:root,
:host {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
 
  background-color: var(--md-sys-color-background);
  margin: 0;
  padding: 0;
}
.theme-select > img {
  display: block;
  margin: auto;
  height: auto;
}
.topBar {
  width: 50%;
  margin: 15px auto 0;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px;
  border-radius: 12px;
  justify-content: space-between;
  background-color: var(--md-sys-color-surface-container);
}

.logo {
  align-items: center;
  align-content: center;
  margin-left: 10px;
  width: 30px;
  padding: 0 5px;
}

.logo img {
  width: 100%;
  display: block;
  margin: auto;
  height: auto;
}

.barItems {
  border-radius: 12px;
}

.barItems>* {
  text-decoration: none;
  margin: 10px;
  padding: 9px;
  border-radius: 12px;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.containerInput {
  display: flex;
  height: 100svh;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.contentInput {
  background-color: var(--md-sys-color-surface-container);
  height: 80svh;
  margin-top: 100px;
  width: 70%;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.urlText {
  font-weight: bolder;
}

.urlInput {
  text-overflow: ellipsis;
  text-align: center;
  width: 500px;
  height: 50px;
  padding: 10px;
  border-radius: 9px;
  border-style: none;
  font-size: 24px;
}

.urlBtn {
  padding: 10px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
}

.urlBtn:disabled {}

.urlBtn:hover:enabled {
  transition: .5s;

}

.urlGen>* {
  margin-top: 50px;
  width: 350px;
  height: 40px;
}

.urlShort {
  cursor: pointer;
  text-overflow: ellipsis;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: lighter;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #fff;
}

.urlCopy {
  opacity: 0%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  border-radius: 12px;
  color: #fff;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.urlCopy:hover {
  user-select: none;
  cursor: pointer;
  transition: .5s;
  opacity: 100%;
}

.toastAlert {
  border-radius: 12px;
}

@media (max-width: 767px) {
  .topBar {
    width: 90%;
    align-items: center;
  }

  .topBar>* {
    margin: 0 5px;
  }

  .barItems>* {
    margin: 5px;
  }

  .urlInput {
    width: 350px;
    height: 30px;
    font-size: 20px;
  }
}