#item-list {
    border: 2px solid black;
    padding: 10px;
    width: 200px;
    margin: 0 auto;
}


form {
    border: 2px solid black;
    padding: 10px;
    width: 300px;
    margin: 20px auto;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="number"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

body {
    background-color: #87CEEB; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 4rem;
}


h1, h2, h3 {
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.item-value {
    display: block;
    font-weight: bold;
}

.item-meta {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e0d8;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}

.header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a09d96;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e0d8;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  margin-bottom: 4px;
  width: 100%;
  max-width: 560px;
}

.icon-btn {
  margin-left: auto;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f5f5f5;
  cursor: pointer;
  transition: background 0.15s;
}
.icon-btn:hover { background: #e8e8e8; }

.copy-feedback {
  font-size: 12px;
  color: #2e7d32;
  min-width: 50px;
}

.input-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.input-row input[type="text"] {
  flex: 1;
  margin-bottom: 0; 
}

.paste-btn {
  flex-shrink: 0;
  padding: 5px 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f5f5f5;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.paste-btn:hover { 
  background: #e8e8e8; 
}

.notif-status {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
}
.notif-status.granted  { background: #e8f5e9; color: #2e7d32; }
.notif-status.denied   { background: #fdecea; color: #b71c1c; }
.notif-status.default  { background: #fff8e1; color: #f57f17; }
