.clocking-anon-app {
  max-width: 420px;
  margin: 1.5em auto;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fafafa;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.clocking-buttons {
  display: flex;
  gap: .6em;
  justify-content: center;
  margin-top: .8em;
}

.clock-btn {
  flex: 1;
  padding: .7em;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: background .3s;
}

.clock-btn:hover {
  background: #444;
}

.clocking-status {
  margin-top: .8em;
  color: #333;
  font-weight: bold;
  min-height: 1.2em;
}

.hint {
  font-size: .85em;
  color: #777;
  margin-top: .8em;
}

/* Bugünkü giriş saatini gösteren yeşil kutu */
.clocking-today-box {
  margin-top: 0.8em;
  padding: 0.7em;
  border-radius: 8px;
  background: #e6f7e9;       /* açık yeşil */
  color: #145c1f;            /* koyu yeşil yazı */
  font-weight: bold;
  border: 1px solid #b7e2c0; /* hafif çerçeve */
}

/* Giriş butonu kilitliyken görünüm */
.clock-btn.disabled,
.clock-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
