/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */



.navbar-brand-text {
  font-weight: bold;
  font-size: 18px;
  position: relative;
  top: 8px;
  padding-right: 30px;
}

button.btn.advanced-select-box {
  border: 1px solid #ced4da;
}

.icon-item {
  cursor: pointer;
  overflow: hidden;
  width: 57px;
  height: 57px;
  font-size: 12px;
  display: inline-block;
}

.icon-item_picture {
  background: #CCC;
  width: 100%;
  height: 100%;
  font-size: 36px;
}

.category-title {
  margin-left: 5px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.icon-list-modal {
 padding-left: 10px;
}

.icon-category {
  width: 100%;
}


.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes glow-in-out {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.3;
  }
}

turbo-frame[busy] .on-turbo-frame-busy--visible {
  display: inherit;
}

turbo-frame[busy] .on-turbo-frame-busy--glow-in-out {
  animation: glow-in-out 2s infinite;
}

turbo-frame[busy] .on-turbo-frame-busy--hidden {
  display: none;
}

turbo-frame:not([busy]) .on-turbo-frame-not-busy--visible {
  display: inherit;
}

turbo-frame:not([busy]) .on-turbo-frame-not-busy--hidden {
  display: none;
}

.field-group {
  padding-top: 5px;
}


#mood-slider {
  width: 100%;
}

#mood-face-svg {
  width: 100px;
  height: 100px;
}

.icon-flex {
  display: inline-block;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.diary-date-navigation_link {
  vertical-align: top;
}

.top-navigation_wrapper {
  background-color: #EEEEEE;
}

footer {
  background-color: #EEEEEE;
  padding: 20px 10px;
}

.collapse-toggle.card-header {
  cursor: pointer;
}
