* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  width: 100%;
  max-width: 350px;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: solid 1px #e9ecef;
  border-radius: 8px;
  gap: 1rem;
}

header {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-height: 80px;
}

header > h1 {
  font-size: 1.2rem;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: black;
}

.repo_container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

#select_languaje {
  width: 100%;
  padding: 0.8rem;
  border: solid 2px #000000;
  border-radius: 5px;
  width: 100%;
  min-width: 100%;
  font-size: 0.8rem;
}

.state {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: solid 2px #000000;
  border-radius: 5px;
  padding: 0.8rem;
  width: 100%;
  min-height: 100px;
}

.extra {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  overflow-wrap: break-word;
  width: 100%;
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

#refresh {
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 0;
  cursor: pointer;
}
#retry {
  background-color: #e03131;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 0;
  cursor: pointer;
}
