* {
  font-family: "Montserrat", sans-serif;
}
.image-upload-wrapper {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.image-preview {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 5px;
}

.image-upload-label {
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  background-color: #05518a;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  text-align: center;
}

.image-upload-label:hover {
  background-color: #333;
}

.image-delete-button {
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  background-color: #8a0505;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
  text-align: center;
}

.image-delete-button:hover {
  background-color: #333;
}

.card-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 16px;
}

.card-select-all {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4px 10px;
  background-color: transparent;
  font-size: 14px;
  font-family: sans-serif;
  color: #444;
  margin-bottom: 6px;
  gap: 6px;
}

.card-select-all span {
  margin-right: 6px;
}
