#create-campaign-btn {
  font-size: 24px; /* You can adjust this based on your design */
  vertical-align: middle;
  margin-left: 16px;
}

#create-campaign-btn:hover {
  color: #d7b740;
}

#delete-campaign {
  color: red;
  padding: 5px;
  background-color: black;
  margin-top: 10px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

#campaign-header {
  margin: 0px;
  font-size: 32px; /* You can adjust this based on your design */
  vertical-align: middle;
}

.campaign-card {
  flex: 0 0 auto;
  /* Don't grow, don't shrink, and base width on content */
  width: calc(30% - 30px);
  /* Subtracting the total margin from the width */
  height: auto;
  margin: 30px;
  padding: 20px;
  background-color: #252525;
  background: radial-gradient(circle, #1f1f1f, #131313 100%);
  text-align: center;
  border-radius: 20px;
  border: 8px #252525 solid;
  font-size: 16px;
  animation: glow 5s infinite alternate;
  text-decoration: none;
  min-height: 200px;
}

.campaign-card:hover {
  border: 8px black solid;
  background: black;
}

.campaign-owner {
  border-color: #d7b740;
}

.campaign-name {
  font-size: 20px;
  color: white;
}

.campaign-mini-box {
  margin: 5px;
  border: solid white 2px;
}

.campaign-mini-box:hover {
  margin: 5px;
  border: solid #d7b740 2px;
}

.campaign-mini-portrait {
  width: 64px;
  height: 64px;
}

.campaign-mini-name {
  font-size: 12px;
}

.campaign-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Adjusts the alignment of the cards within the container */
  align-items: flex-start; /* Aligns items at the start of the flex container */
}

@media screen and (max-width: 1000px) {
  .campaign-card {
    flex: 0 0 auto;
    /* Don't grow, don't shrink, and base width on content */
    width: calc(50% - 40px);
    /* Subtracting the total margin from the width */
    height: auto;
    margin: 20px;
    padding: 20px;
    background-color: black;
    background: radial-gradient(circle, #1f1f1f, #131313 100%);
    text-align: center;
    border-radius: 20px;
    border: 8px #252525 solid;
    font-size: 16px;
    animation: glow 5s infinite alternate;
  }
  .campaign-mini-portrait {
    width: 32px;
    height: 32px;
  }
  .campaign-mini-name {
    font-size: 10px;
  }
}
.campaign-character-name {
  font-size: 14px;
  height: 40px;
}

.delete-campaign {
  background-color: red;
}

.campaign-player {
  position: relative;
  margin-top: 10px;
  border: 4px black solid;
  background: radial-gradient(circle, #1f1f1f, #131313 100%);
  flex: 0 1 calc(25% - 10px); /* Adjust calculation based on gap and desired margins */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content of each player's portrait */
  padding: 5px;
  border-radius: 10px;
}

.active-character {
  border-color: #d7b740;
  background: radial-gradient(circle, #d7b740, rgba(0, 0, 0, 0.8) 100%);
}

.campaign-portrait-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align items to the start of the container */
  align-items: center; /* Center items vertically */
  gap: 10px; /* Adjust based on your preference for spacing between items */
}

.campaign-overview-portrait-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align items to the start of the container */
  align-items: center; /* Center items vertically */
  gap: 3px; /* Adjust based on your preference for spacing between items */
}

.campaign-portrait {
  width: 128px;
  height: 128px;
  border-radius: 10px;
  margin-bottom: 10px;
}

#overview-section {
  border: 4px solid white;
  min-height: 200px;
}

#inventory-section {
  border: 4px solid white;
  background: #252525;
}

#overview-log {
  border: 4px solid white;
  min-height: 200px;
}

#loggo {
  border: 4px solid white;
  min-height: 100%;
}

#player-portrait {
  border: 5px solid black;
  border-radius: 10px;
}

.chat {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.chat li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #b3a9a9;
}

.chat li.left .chat-body {
  margin-left: 60px;
}

.chat li.right .chat-body {
  margin-right: 60px;
}

.chat li .chat-body p {
  margin: 0;
  color: #777777;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
  margin-right: 5px;
}

.panel-body {
  overflow-y: scroll;
  height: 65vh;
}

.panel-heading {
  color: green;
  background-color: white;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.remove-character-btn {
  position: absolute;
  top: 90%;
  color: red;
  right: 8px;
  transform: translateY(-50%);
  cursor: pointer;
}/*# sourceMappingURL=campaign.css.map */