
/* Card section */
.card-section {
	width: 50%;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}

.card-area {
	width: 100%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 37px;
	background-color: var(--theme-color);
	border-radius: 20px;
	margin-bottom: 5px;
	cursor: pointer;
}


/* Tool bar */
.tool-buttons {
	padding-left: 5px;
	padding-right: 5px;
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-bottom: 5px;
	font-size: 2em;
}

.tool-buttons button img {
	height: 100%;
	width: 2em;
	pointer-events: none;
}

.card-no-indicator {
	display: inline-block;
}

/* Option button */
#options {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5); /* assombrit le fond */
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  z-index: 1000;
}

.options-content {
  background: var(--theme-color);
  padding: 10px;
  border-radius: 8px;
}

.kanji-details {
  background-color: var(--theme-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 30px;
}

.kanji-details .kanji-svg-div {
  position: relative;
}

.kanji-anim .kanji-stroke-order {
	font-size: 12px;
	fill: yellow;
}

.kanji-bg .kanji-stroke-order {
  display: none;
}

.kanji-anim {
    position: absolute;
    left: 0;
}

.kanji-bg path {
    fill: none;
    stroke: gray;
    stroke-width: 4;
}

.kanji-anim path {
    fill: none;
    stroke: white;
    stroke-width: 4;
}
