body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
}

header {
  background-color: #3498db;
  color: white;
  text-align: center;
  padding: 1em;
  border-radius: 5px;
  margin-bottom: 20px;
}

h1, h2 {
  margin-bottom: 0.5em;
}

#checker {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"] {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}

.loader {
  text-align: center;
  margin-top: 20px;
}

.result-container {
  margin-top: 20px;
}

#user-info, #server-info {
  background-color: #ecf0f1;
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  word-wrap: break-word;
}

#user-info {
  border-left: 5px solid #3498db;
}

#server-info {
  border-left: 5px solid #2ecc71;
}

.info-group {
  margin-bottom: 15px;
}

.info-title {
  font-weight: bold;
  color:  #3498db;
  margin-bottom: 10px;
  font-size: 1.2em;
}
.info-title-serv {
  font-weight: bold;
  color:  #2ecc71;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.info-key {
  font-weight: bold;
  color: #34495e;
}

.info-value {
  color: #7f8c8d;
  text-align: right;
}

.expire-days {
  color: #e74c3c !important;
  font-weight: bold;
}



#about, #faq {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

details {
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: #3498db;
}

footer {
  text-align: center;
  margin-top: 20px;
  color: #7f8c8d;
}

footer a {
  color: #3498db;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.input-group {
  display: flex;
  margin-bottom: 10px;
  position: relative;
}

#fullUrl {
  flex-grow: 1;
  padding-right: 40px; /* Make room for the paste button */
}

#pasteButton {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-left: none;
  cursor: pointer;
  transition: background-color 0.3s;
  height:38px;

}

#pasteButton:hover {
  background-color: #e0e0e0;
}

#pasteButton i {
  color: #555;
}
#pasteButton.pasted {
  background-color: #2ecc71;
  border-color: #27ae60;
}

#pasteButton.pasted i {
  color: white;
}