/* Enchantment Info Styling */

/* Import the Minecraft font */
@font-face {
  font-family: "Mojang";
  src: url("../fonts/Mojang-Regular.ttf") format("truetype");
  font-weight: normal;
  font-size: normal;
}

/* Import the Minecraft bold font */
@font-face {
  font-family: "Mojang";
  src: url("../fonts/Mojang-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

.content_container {
    padding: 50px 100px !important;
}

.content_container .enchantment {
  width: auto;              
  height: auto;

  display: flex;             
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: rgba(16, 0, 16, 0.94);
  border: 10px solid #1C013A;
  padding: 10px;
  color: #A8A8A8;
  font-family: "Mojang", monospace;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 5px;
  word-spacing: 4px;
  text-align: left;
  box-sizing: border-box;
}

.content_container .enchantment .spacer_bar {
    width: 100%;
    height: 3px;
    background-color: #A8A8A8;
    margin-top: 4px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.content_container .enchantment .enchant_name {
  margin-bottom: 10px;
  margin-left: 10px;
  width: 100%;
  color: #FCFCFC;
}


.content_container .enchantment .enchant_info {
  margin: 10px 0;
  margin-left: 10px;
  line-height: 1.4;
  width: 100%;
  color: #FCFCFC;
}

.content_container .enchantment ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0 0 0;
  width: 100%;
  color: #FCFCFC;
}

.content_container .enchantment ul li {
  margin-bottom: 3px;
  margin-left: 50px;
  width: 100%;
  color: #FCFCFC;
}

.edit_button {
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #C6C6C6;
    border-radius: 4px;
    position: relative;
}
.edit_button a {
  display: block;
  padding: 6px 12px;
  font-size: 1.2rem;
  text-decoration: none;
}
.edit_button:hover {
  background-color: #AFAFAF;
}

.edit_button a:link,
.edit_button a:visited,
.edit_button a:hover,
.edit_button a:active {
    color: #3F3F3F;
    text-decoration: none;
}