main{
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 98vh;
  background: #cfddf2;
  padding: 0 10px;
}
header{
  display: flex;
  flex-direction: row;
  font-family: sans-serif;
  align-items: center;
  justify-content: space-between;
  background: #cfddf2;
  padding: 0 10px;
  text-align: center;
  font-size: 17px;
}
.wrapper{
  background: #fff;
  padding: 20px;
  width: 800px;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.missing{
  font-family: sans-serif;
  align-items: center;
  text-align: center;
  font-size: 17px;
}
.footer{
  padding: 20px;
  width: 800px;
  text-align: center;
  font-size: 17px;
}
.logoutbtn{
	width: 10%;
	text-align: center;
    font-size: 10px;
}
::selection{
  background: rgba(23,162,184,0.3);
}
.wrapper form{
  height: 50px;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
}
table {
  border-collapse: collapse;
}
.table_list th, td {
  padding: 3px;
  border-bottom: 0px solid #ddd;
}
.table_list tr:hover {background-color: #f7f7f7;}
form .url-icon{
  position: absolute;
  width: 50px;
  text-align: center;
  font-size: 23px;
  color: #c4c4c4;
  pointer-events: none;
}
form input:valid ~ .url-icon{
  color: #20B2AA;
}
form input{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 120px 0 45px;
  font-size: 20px;
  caret-color: #20B2AA;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: all 0.1s ease;
}
form input:valid{
  border-color: #20B2AA;
}
form input::placeholder{
  color: #c4c4c4;
}
form input:focus::placeholder{
  color: #d9d9d9;
}
form button{
  position: absolute;
  right: 6px;
  padding: 5px 15px;
  font-size: 18px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #f01818;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
form button:hover{
  background: #1fada6;
}
input[type=submit] {
  padding: 5px 15px;
  font-size: 18px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: #f01818;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=submit]:hover {
  background: #1fada6;
}
.wrapper a{
  color: #000;
}

.wrapper .statistics{
  margin: 20px 0;
  display: flex;
  padding-right: 5px;
  align-items: center;
  justify-content: space-between;
}
.statistics span{
  font-size: 15px;
}
.statistics span span{
  font-weight: 500;
}
.statistics a:hover{
  color: #20B2AA;
}
.wrapper .urls-area{
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 5px;
  max-height: 400px;
  overflow-y: scroll;
}
.url-area :is(.title, .data){
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.url-area li{
  width: 100%;
  list-style: none;
  border-right: 1px solid #ddd;
}
.url-area .data li a:hover{
  color: #20B2AA;
  text-decoration: underline;
}
.blur-effect{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,0.3);
  display: none;
}
.popup-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  padding: 25px;
  max-width: 480px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.popup-box.show{
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.popup-box .info-box{
  color: #0f5753;
  background: #bef4f1;
  border: 1px solid #7de8e3;
  padding: 10px;
  text-align: center;
  font-size: 17px;
  border-radius: 5px;
}
.popup-box .info-box.error{
  color: #721c24;
  background: #f8d7da;
  border-color: #f5c6cb;
}
.popup-box form{
  margin-top: 10px;
  position: relative;
  padding: 0 0 0 0;
  width: 100%;
}
.popup-box form label{
  font-size: 18px;
}
.popup-box form .copy-icon{
  position: absolute;
  right: 10px;
  top: 32%;
  transform: translateY(-100%);
  font-size: 20px;
  cursor: pointer;
}
.copy-icon:hover{
  color: #20B2AA;
}
.popup-box form input:focus{
  border-color: #20B2AA;
}
.popup-box form button{
  width: 100%;
  height: 45px;
  position: relative;
  right: 0;
  font-size: 20px;
  margin-top: 10px;
}
.short-url{
  width: 99%;
  padding: 0 0 0 3px;
}