body {
  padding: 10px;
}

input, button {
  font: inherit;
}

img {
  display: none;
  width: 100%;
}

video {
  display: none;
  width: 100%;
}

textarea {
  width: 100%;
  padding: 10px;
  font-family: inherit;
  font-size: inherit;
}

/* Modal Styles */
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 24px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  text-align: center;
  color: black;
}

.modal-content p {
    margin: 0 0 16px;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.modal-actions button {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: bold;
}

#modal-add-key-button {
  background-color: #4285F4;
  color: white;
  border-color: #4285F4;
}

#modal-close-button {
    background-color: #e0e0e0;
    color: #333;
}
