.main {
    background-color: #20262E;
    color: white;
}

.brand {
    flex-grow: 0.5;
    text-align: center;
    display: flex;
}


.loaded-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin: 0px;
    margin-right: 5px;
}

#flash-messages {
    color: red;
}


.button, .button-gear {
  align-items: center;
  height: 87.5%;
  background-color: #333333;
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 15px;
  justify-content: center;
  line-height: 2em;
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button {
  max-width:100%;
  min-width: 70px;
}

.button-gear {
  max-width:20%;
  min-width: 70px;
}

.button:active,
.button:hover {
  /*background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%);*/
  outline: 5;
}


#button-upload {
    margin-top: 20px;
}

#audio {
    width: 100%;
}

#audioPlayer {
    width: 100%;
    background: #333;
    padding: 20px;
    /*color: #fff;*/
    color: red;
}

.button-43 {
  /*background-image: linear-gradient(-180deg, #37AEE2 0%, #1E96C8 100%);*/
  /*background-color: #e208c3;*/
  border-radius: .5rem;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 13px;
  justify-content: center;
  padding: 1rem 1.75rem;
  text-decoration: none;
  width: 100%;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/*.button-43:hover {*/
/*  background-image: linear-gradient(-180deg, #1D95C9 0%, #17759C 100%);*/
/*}*/

.eppo {
    background-color: #0595fa;
}

.navbar_nanou {
    background-color: #106094;
}
.nanou {
    background-color: #106094;
}
.nanou:hover {
    background-color: #8f4e08;
}

.home {
    background-color: #164960;
}

.minorfall {
    background-color: #620443;
}

@media (min-width: 600px) {
  .button-43 {
    font-size: 16px;
  }

  .button {
    font-size: 18px;
    min-width: 196px;
  }

  .navbar {
    color: white;
    font-size: 22px;
    height: 4rem;
  }
}

@media (max-width: 600px) {
  .button-43 {
    font-size: 8px;
  }

  .navbar {
    color: white;
    font-size: 15px;
    height: 4rem;
  }
}

@media (max-width: 600px) {
  .button-43 {
    font-size: 10px;
  }

  .navbar {
    color: white;
    font-size: 12px;
    height: 4rem;
  }
}

.expander_buttons{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 5% 5% 5%;
}

.expandable-section{
    justify-content: center;
    margin-left: 5%;
    margin-right: 5%;
}

#purchase-section, #income-section {
    border: 2px solid #3498DB;
    border-radius: 8px;
    padding: 20px;
    margin: 2% 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease-in-out;
}


#purchase-section:hover, #income-section:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: #0056b3; /* Darker blue on hover */
}


.container {
    display: flex;
    justify-content: center;
    font-size: 100px;
    color: gold;
}


@media (max-width: 600px) {
    .container {
        font-size: 50px;
    }
}


#savings-section {
    margin: 0 10%;
    max-height: 350px;
}

#savingsChart {
    margin: 0 10%;
    height: 100%;
}

@media (max-width: 600px) {
    #savings-section {
        margin: 0;
    }
}


#balloon-container {
    position: absolute;
    height: 25%;
}

.balloon {
  position: absolute;
  bottom: -25px;
  width: 30px;
  height: 40px;
  border-radius: 50%;
  background-color: red;
  opacity: 0.8;
  animation: rise 5s linear forwards;
  overflow: hidden;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1.2);
    opacity: 0;
  }
}


#icon-select {
  display: none;
  position: absolute;
  top: 5rem;
  right: 0;
  background: #0056b3;
  color: black;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px;
  z-index: 1000;
}

#icon-select.show {
  display: block;
}

#icon-select select {
  width: 100%;
  padding: 1px;
  margin-top: 5px;
  background-color: blue;
}
