body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgb(173, 239, 255);
}

.img-border {
  border: 2px solid #1c2b39;
  border-radius: 10px;
}

main {
  flex: 1;
}

h3 {
  font-weight: bold;
}

.my-custom-row {
  margin-top: auto;
}

.tab-container {
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.tab-content {
  border-radius: 5px;
  text-align: left;
  background-color: azure;
  min-height: 60vh;
  padding: 4rem;
  overflow: auto;
}

.input-container {
  display: flex;
  flex-direction: row;
}

.total-income-section {
  margin-top: 3rem;
  text-align: center;
}

.total-expenses-section {
  margin-top: 3rem;
  text-align: center;
}

footer {
  margin-top: auto;
  padding: 20px;
}

.dropdown-item:hover {
  cursor: pointer;
  color: rgb(0, 204, 255);
}

.action-button {
  background-color: rgb(0, 190, 238); /* Bootstrap primary blue */
  color: azure;
  border: none;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.action-button:hover {
  background-color: #238eff;
}

.action-button i {
  margin-left: 10px;
}

.button-container {
  display: flex;
  justify-content: end;
  margin-top: 2rem;
}

#budgetSummaryChart {
  width: 100%;
  height: 400px;
  display: block;
  box-sizing: border-box;
}

#expenseBreakdownPieChart {
  width: 400px;
  height: 400px;
  margin: auto;
  display: block;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

#summaryMessage {
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
}

.graphs-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  text-align: center;
}

.button {
  color: white;
  border: none;
  border-radius: 4px;
  margin-left: 6px;
  cursor: pointer;
  font-size: smaller;
}

.delete-button {
  background-color: #1c2b39;
}

.update-button {
  background-color: #008aab;
}

.bar-chart-container {
  width: 50%;
}

.donut-chart-container {
  width: 50%;
}

@media (max-width: 990px) {
  .graphs-container {
    flex-direction: column;
  }
}

#tipsList {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
