/* Body & Global Styles */
body {
  background-color: #bd9a79;
  color: #433120;
}

p {
  font-weight: 500;
  margin: 0.5rem 0 0.5rem 0.5rem;
}

hr {
  width: 100%;
  border: 0;
  border-top: 2px solid white;
  opacity: 0.5;
  margin: 0;
  color: white;
}

/* Headings */
h1 {
  background-color: rgb(119, 80, 54);
  color: #F3C24A;
  padding: 4px;
  border-radius: 10px;
  font-weight: bolder;
  text-align: center;
}

h2 {
  font-size: 1.4rem;
}

/* Collapse Sections */
.collapse-header {
  color: #F3C24A;
  font-weight: bolder;
  background-color: rgb(119, 80, 54);
  border-radius: 10px 10px 0 0;
  padding: 10px;
  margin: 0;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  margin: 0;
}

.collapse-area {
  background-color: rgb(180, 127, 92);
  border-radius: 10px;
  overflow: hidden;
}

.collapse {
  padding-bottom: 10px;
}

.result .collapse {
  padding-bottom: 0;
}

/* Results */
.results {
  color: white;
  font-weight: bolder;
  font-size: large;
}

/* Containers & Layout */
.container {
  background-color: rgb(67, 51, 38);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 0 !important;
}

.row {
  --bs-gutter-x: 0rem;
}

/* Forms */
.form-control,
.form-select,
.form-select option {
  width: 100%;
  font-weight: bold;
  padding: 8px;
  font-size: 15px;
  background-color: #f3e0c2;
  color: #3e2a16;
  border: 2px solid #bd9a79;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 194, 74, 0.5);
  border-color: #f3c24a;
  outline: none;
  background-color: #f3e0c2;
}

.form-group {
  color: white;
  font-size: 16px;
  font-weight: bolder;
}

label {
  color: #ffffff;
  font-size: 16px;
}

.calculator-bonuses-form .form-group {
  padding-left: 5px;
  padding-right: 5px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background-color: #f2d9bb;
}

::-webkit-scrollbar-thumb {
  background-color: #bd9a79;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #f2d9bb;
}

/* Media Queries */
@media only screen and (max-width: 1024px) {
  .container {
    min-width: fit-content;
  }
}

/* Home Button */
.home-icon-link {
  position: fixed;
  right: 10px;
  top: 95%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 1000;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}

.home-icon {
  background-color: #7e4606;
  border: 1px solid #f8bc00;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.home-icon i {
  color: #f8bc00;
  font-size: 18px;
}
