/* カスタムカード専用スタイル */

.custom-card {
  background: white;
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1rem;
}

.custom-card-header {
  background-color: #0dcaf0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.custom-card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.custom-card-body {
  padding: 1rem;
}

/* オーバーレイ用カスタムカード */
.custom-overlay-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 12px;
}

.custom-overlay-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.custom-overlay-body {
  padding-top: 0rem;
  background: white;
  flex: 3;
  min-height: 150px;
  max-height: 30vh;
  overflow-y: auto;
}
