body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background-color: #2c2c2c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #1c1c1c;
  padding: 10px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #444444;
  height: 80px;
  box-sizing: border-box;
}
.logo {
  width: 180px;
  height: auto;
  margin-right: 5px;
}

.header h1 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
}

.label {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.result-info h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.result-info p {
  margin: 0;
}

.search-container {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-top: 100px;
  padding: 0 20px;
  box-sizing: border-box;
}

.search-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-box {
  width: 400px;
  min-width: 200px;
  padding: 10px 10px 10px;
  border-radius: 5px;
  border: 1px solid #555555;
  outline: none;
  font-size: 1rem;
  background-color: #444444;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.search-button {
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.search-button:hover {
  background-color: #0056b3;
}

.action-button {
  padding: 8px 12px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.action-button:hover {
  background-color: #0056b3;
}

.search-results {
  padding: 10px 15px;
}

.result-item {
  display: flex;
  background-color: #333333;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 20px 20px;
}

.result-image {
  width: 70%;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 20px;
}

.title {
  padding-bottom: 50px;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

@media (max-width: 600px) {
  .header {
    justify-content: flex-start;
  }

  .logo {
    width: 100px;
    margin-right: 3px;
  }

  .header h1 {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .result-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
  }

  .result-image {
    width: 100%;
    margin: 0 0 20px;
  }

  .result-info {
    align-items: center;
    text-align: center;
  }

  .search-container {
    width: 90%;
    padding: 0 5%;
  }
}
