﻿/* Estilo para o corpo */
body {
  font-family: 'Roboto', Arial, sans-serif;
  
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

/* Cabeçalho */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Estilo para o formulário */
#searchForm {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

#searchForm label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.link-doc {
 color: #ffffff;
 padding-top: 5px;
}


#searchForm input {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

#searchForm input:focus {
  border-color: #3498db;
}

#searchForm button {
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#searchForm button:hover {
  background-color: #2980b9;
}

/* Estilo para o resultado */
#result {
  margin-top: 30px;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

#result h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}



#urls {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#urls li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 10px 15px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#urls a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#urls a:hover {
  color: #1d6fa5;
}




/* Estilo para responsividade */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  #searchForm {
    padding: 15px;
  }

  #searchForm button {
    padding: 10px;
  }

  #urls li {
    padding: 8px 10px;
  }
}