.cacasm-page {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
}

body.cacasm-admin-page #wpadminbar {
    display: none !important;
}

.cacasm-page-title {
  font-size: 24px;
  font-weight: 500;
  color: #E9528E;
  text-align: center;
}

.cacasm-search {
  border-bottom: 1px solid #AAAAAC;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#cacasm-search-input {
  font-size: 14px;
  padding: 13px;
  border: none;
  border-radius: 25px;
  background-color: #F5F5F5;
  width: 100%;
  color: #535353;
  margin-top: 40px;
}
  
.cacasm-card-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 40px;
}
  
.cacasm-card {
  background: #fff;
  border: 1px solid #AAAAAC;
  border-radius: 10px;
  padding: 10px;
}

.cacasm-card-header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cacasm-card-title {
  font-size: 16px;
  color: #535353;
}

.cacasm-meta {
  margin: 0 0 10px;
}

.cacasm-meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: start;
  padding: 5px 0;
  border-bottom: 1px dashed #AAAAAC;
}

.cacasm-meta-row:last-child {
  border-bottom: none;
}

.cacasm-meta-row dt {
  font-size: 12px;
  color: #535353;
  font-weight: 500;
}

.cacasm-meta-row dd {
  margin: 0;
  font-size: 14px;
  color: #535353;
  word-break: break-word;
}

.cacasm-link { 
  color: #7D40A0; 
  text-decoration: none; 
}

/* ボタン */
.cacasm-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.cacasm-card-toggle {
  appearance: none;
  background: #fff;
  color: #7D40A0;
  border: solid 1px #7D40A0;
  height: 30px;
  width: 100px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

.cacasm-store-panel {
  margin-top: 20px;
}

.cacasm-store-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cacasm-store-card {
  background: #F5F5F5;
  border: none;
}

.cacasm-card-create-account-btn {
  appearance: none;
  border: 0;
  background: #E9528E;
  color: #fff;
  height: 30px;
  width: 170px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

.cacasm-card-profile-link {
  appearance: none;
  border: 0;
  background: #fff;
  color: #E9528E;
  border: solid 1px #E9528E;
  height: 30px;
  width: 170px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cacasm-empty {
  font-size: 14px;
  color: #AAAAAC;
  text-align: center;
}

.cacasm-badge {
  font-size: 12px;
  width: 80px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.cacasm-badge-unissued {
  background-color: #E9528E;
  color: #fff;
}

.cacasm-badge-premium {
  background-color: #fff;
  color: #7D40A0;
  border: 1px solid #7D40A0;
}

.cacasm-badge-light {
  background-color: #fff;
  color: #7D40A0;
  border: 1px solid #7D40A0;
}