/* Frontend General Styles: Minimalist & Clean Design */
.orijinallik-sorgu-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.orijinallik-sorgu-box {
  background: #ffffff;
  padding: 40px;
  text-align: center;
}

.sorgu-header {
  text-align: center;
  margin-bottom: 30px;
}

.sorgu-header h2 {
  font-size: 36px;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #2b3036;
}

.sorgu-header p {
  font-size: 15px;
  margin: 0 auto;
  color: #6c757d;
  max-width: 650px;
  line-height: 1.6;
}

.sorgu-separator {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.sorgu-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  right: 30%;
  height: 1px;
  background-color: #e9ecef;
  z-index: 1;
}

.sorgu-separator span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 0 15px;
  color: #2b3036;
  font-weight: 600;
  font-size: 14px;
}

.sorgu-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-group-code {
  margin-bottom: 0px;
}

#kod-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #495057;
  outline: none;
  border-radius: 4px; /* subtle radius or none */
  box-sizing: border-box;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#kod-input::placeholder {
  color: #adb5bd;
}

#kod-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
  position: relative;
  z-index: 2;
}

.form-group-button {
  margin-top: -1px;
}

.sorgu-button {
  width: 100%;
  background: #111111;
  border: 1px solid #111111;
  padding: 18px 20px;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
  box-sizing: border-box;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.sorgu-button:hover {
  background: #000000;
  border-color: #000000;
}

.sorgu-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#sorgu-sonuc {
  max-width: 650px;
  margin: 30px auto 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

#sorgu-sonuc.show {
  opacity: 1;
  transform: translateY(0);
}

.sonuc-box {
  background: white;
  padding: 25px;
  border: 1px solid #e9ecef;
  text-align: center;
  border-radius: 4px;
}

.sonuc-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.sonuc-box.success {
  border-color: #c3e6cb;
  background-color: #d4edda;
  color: #155724;
}

.sonuc-box.error {
  border-color: #f5c6cb;
  background-color: #f8d7da;
  color: #721c24;
}

.sonuc-message {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.sonuc-details {
  font-size: 14px;
  margin: 10px 0 0 0;
}

.sorgu-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .sorgu-header h2 {
    font-size: 28px;
  }
  .sorgu-separator::before {
    left: 10%;
    right: 10%;
  }
}
