/* Status.cafe renk paleti */
:root {
  --statuscafe-bg: #000066;
  --statuscafe-text: #ffccff;
  --statuscafe-border: #ccc;
  --statuscafe-dark-gray: rgba(50, 50, 50, 0.7);
}

/* Insaniquarium tarzı butonlar (.name-enter-button) */
.insaniquarium-button, .statuscafe-button {
  position: fixed;
  width: 80px;
  height: 40px;
  background: linear-gradient(
    180deg,
    rgba(242, 243, 245, 0.9) 0%,
    rgba(123, 125, 153, 0.9) 20%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border: 1px solid #3d3d3d;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 50% 20% 50% 20% / 60% 30% 70% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  font-family: 'MS UI Gothic', sans-serif;
  font-size: 12px;
  cursor: none;
  z-index: 1000;
  text-align: center;
}
.insaniquarium-button:hover, .statuscafe-button:hover {
  background: #3333cc;
}
.insaniquarium-button .button-text, .statuscafe-button .button-text {
  display: inline-block;
}

/* İsim yazma kutusu (name-input-dialog) */
.name-input-dialog {
  font-family: 'MS UI Gothic', sans-serif;
  font-size: 15px;
  user-select: none;
  background: linear-gradient(
    180deg,
    rgba(242, 243, 245, 0.9) 0%,
    rgba(123, 125, 153, 0.9) 20%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border: 1px solid #3d3d3d;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  backdrop-filter: blur(2px);
  color: #cccccc;
  padding: 20px;
  width: 300px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/* Yazı girme alanı (input) */
.name-input {
  width: 80%;
  padding: 8px;
  margin-bottom: 10px;
  background: url('images/aero_glass.png') no-repeat center/contain;
  border: 1px solid var(--statuscafe-border);
  color: var(--statuscafe-text);
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
}
.name-input::placeholder {
  color: #cc99cc;
}

/* Enter butonu */
.name-enter-button {
  padding: 5px 15px;
  margin: 0 auto;
  width: 80px;
}

/* Balık isim etiketi (fish-name-tag) */
.fish-name-tag {
  background: linear-gradient(
    180deg,
    rgba(242, 243, 245, 0.9) 0%,
    rgba(123, 125, 153, 0.9) 20%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border: 1px solid var(--statuscafe-border);
  padding: 2px 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: var(--statuscafe-text);
  text-align: center;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  position: fixed;
  z-index: 1000;
  pointer-events: none;
}