/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Add your custom styles below this line */

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 100px;
}

.container.view-dashboard {
  min-height: 90vh;
}

nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

nav button {
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  text-align: center;
}

hr {
  width: 100%;
  border: 1px solid #333;
}

h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.list-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  flex-direction: column;
}

.list-container h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.list-container h2 span {
  font-size: 14px;
}

ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 100%;
}

li {
  display: flex;
  justify-content: space-between;
  padding: 4px 5px;
  font-size: 14px;
  min-height: 28px;
  border-bottom: 1px solid #f0f0f0;
} 

li > * {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 25%;
  padding: 2px;
}

li > *:first-child {
  width: 25%;
  word-wrap: break-word;
  hyphens: auto; 
}

li.bill-item > *:first-child {
  width: 100%;
}

li > *:nth-child(2) {
  flex-basis: 20%;
}

.input-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 100%;
  padding: 0 10px;
  gap: 10px;
}

.input-container > * {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(50%  - 5px);
  margin-bottom: 5px;
  
}

.input-container > *:first-child {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
}

select  {
  position: relative;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  height: 30px;
  color: #333;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

input {
  padding: 5px;
  border: 1px solid #333;
  border-radius: 5px;
  width: 100%;
  height: 30px;
}

input[type="checkbox"] {
  width: auto;
}

.add-button {
  background-color: #333;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  height: 30px;
  border-radius: 5px;
}

.edit-button,
.delete-button,
button[type="submit"],
button[type="button"] {
  color: #333;
  background-color: white;
  border: 2px solid #333;
  padding: 5px 10px;
  cursor: pointer;
  height: 30px;
  border-radius: 5px;
  -webkit-appearance: none;
  appearance: none;
}

.edit-button {
  margin-right: 5px;
}

.edit-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
  width: 80%;
  max-width: 500px;
}

.edit-dialog h2 {
  margin-bottom: 20px;
}

.edit-dialog .input-container {
  margin-bottom: 20px;
}

.edit-dialog .button-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.edit-dialog .button-container button {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.edit-dialog .button-container .save-button {
  background-color: #333;
  color: white;
  border: none;
}

.edit-dialog .button-container .cancel-button {
  background-color: white;
  color: #333;
  border: 2px solid #333;
}

.reload-button {
  background-color: #333;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  height: 30px;
  border-radius: 5px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-container label {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  padding-left: 20px;
}

.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-container .checkmark {
  position: absolute;
  top: -1px;
  left: -5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 1;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
  background-color: #333;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Import/Export Styles */
.section-container {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  width: 100%;
  max-width: 600px;
}

.section-container h2 {
  color: #333;
  margin-bottom: 10px;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.section-container p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.export-button, .import-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.export-button:hover, .import-button:hover {
  background-color: #0056b3;
}

.replace-button {
  background-color: #dc3545 !important;
}

.replace-button:hover {
  background-color: #c82333 !important;
}

.info-section {
  background-color: #e9ecef;
  border-left: 4px solid #007bff;
}

.info-section ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.info-section li {
  margin-bottom: 5px;
}

input[type="file"] {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

/* Message styles */
.message {
  position: fixed;
  top: 60px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.message.show {
  transform: translateX(0);
}

.message.success {
  background-color: #28a745;
}

.message.error {
  background-color: #dc3545;
}

.message.warning {
  background-color: #ffc107;
  color: #333;
}

/* Error message styles */
.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  padding: 5px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 3px;
  display: none;
}

.error-message.show {
  display: block;
}

/* Statistics Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.stat-item {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.stat-value.income {
  color: #28a745;
}

.stat-value.expense {
  color: #dc3545;
}

.stat-value.positive {
  color: #28a745;
}

.stat-value.negative {
  color: #dc3545;
}

/* Dashboard-style statistics */
.dashboard-style {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
}

.dashboard-style h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

.stats-overview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.stat-row.summary {
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 8px;
  margin-top: 5px;
}

.stat-label {
  color: #555;
  font-weight: 500;
}

.stat-value {
  font-weight: bold;
  color: #333;
}

.stat-value.income {
  color: #28a745;
}

.stat-value.expense {
  color: #dc3545;
}

.stat-value.positive {
  color: #28a745;
}

.stat-value.negative {
  color: #dc3545;
}

/* Category Breakdown Styles */
.category-breakdown {
  margin: 20px 0;
}

.category-item {
  margin-bottom: 15px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.category-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.category-name {
  font-weight: bold;
  color: #333;
}

.category-amount {
  color: #666;
  font-size: 14px;
}

.category-bar {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.category-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  transition: width 0.3s ease;
}

/* Trend Chart Styles */
.trend-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 200px;
  margin: 20px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.trend-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.bar-fill {
  width: 30px;
  background: linear-gradient(180deg, #28a745, #20c997);
  border-radius: 4px 4px 0 0;
  min-height: 5px;
  transition: height 0.3s ease;
}

.bar-label {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin-top: 5px;
}

.bar-amount {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

/* Yearly Comparison Styles */
.yearly-comparison {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.year-item {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  flex: 1;
  margin: 0 10px;
}

.year-item.current-year {
  border: 2px solid #007bff;
  background-color: #f0f8ff;
}

.year-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  font-weight: bold;
}

.year-amount {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Enhanced List Styles */
.enhanced-list-container {
  width: 100%;
  margin: 20px 0;
}

.list-controls {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  align-items: center;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.sort-select {
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  min-width: 120px;
}

.sort-select:focus {
  outline: none;
  border-color: #007bff;
}

.enhanced-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.list-item:hover {
  background-color: #e9ecef;
}

.item-text {
  margin-right: 10px;
  color: #333;
}

.empty-message {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

/* Dashboard modern box layout */
.dashboard-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 16px 20px 16px;
  margin: 18px 0;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dashboard-headline {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.01em;
}

.dashboard-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px 10px;
  margin-top: 8px;
}

.dashboard-value-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 10px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  min-width: 0;
}

.dashboard-value-label {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 2px;
  text-align: center;
}

.dashboard-value-amount {
  font-size: 1.15em;
  font-weight: bold;
  color: #222;
  text-align: center;
}

.dashboard-value-box.highlight {
  background: #eafbe7;
  border: 2.5px solid #28a745;
  box-shadow: 0 0 8px 1px #b6e6b0;
  transform: scale(1.04);
  z-index: 2;
}

.dashboard-value-box.highlight .dashboard-value-amount {
  color: #28a745;
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px #b6e6b0;
}

.dashboard-value-box.highlight .dashboard-value-label {
  font-weight: bold;
  color: #218838;
  font-size: 1.05em;
}

.dashboard-value-box.highlight.negative {
  background: #fff4f4;
  border: 2.5px solid #dc3545;
  box-shadow: 0 0 8px 1px #f5c6cb;
}

.dashboard-value-box.highlight.negative .dashboard-value-amount {
  color: #dc3545;
  text-shadow: 0 1px 2px #f5c6cb;
}

.dashboard-value-box.highlight.negative .dashboard-value-label {
  color: #c82333;
}

.dashboard-value-box.creditcard {
  background: #ffebee;
  border-left: 3px solid #f44336;
}

.dashboard-value-box.creditcard .dashboard-value-amount {
  color: #c62828;
}

.dashboard-value-box.creditcard .dashboard-value-label {
  color: #d32f2f;
}

@media (max-width: 600px) {
  .dashboard-box {
    padding: 10px 4px 12px 4px;
    margin: 10px 0;
    max-width: 100vw;
  }
  .dashboard-headline {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .dashboard-values-grid {
    gap: 7px 4px;
  }
  .dashboard-value-box {
    padding: 7px 3px 6px 3px;
  }
  .dashboard-value-label {
    font-size: 0.9em;
  }
  .dashboard-value-amount {
    font-size: 1em;
  }
}

/* Neue Navigation mit Burger-Menü */
#main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  background: #333;
  color: #fff;
  padding: 0 0 0 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 44px;
}
#main-nav .nav-left {
  display: flex;
  gap: 2px;
  margin-left: 6px;
}
#main-nav .nav-left button {
  background: none;
  color: #fff;
  border: none;
  font-size: 15px;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
#main-nav .nav-left button:hover, #main-nav .nav-left button.active {
  background: #444;
}
#main-nav .nav-right {
  position: relative;
  margin-right: 8px;
}
#burger-menu {
  background: none;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
#burger-menu:hover, #burger-menu[aria-expanded="true"] {
  background: #444;
}
.burger-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 38px;
  background: #fff;
  color: #222;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  min-width: 150px;
  z-index: 100;
  flex-direction: column;
  padding: 6px 0;
}
.burger-dropdown button {
  background: none;
  color: #222;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 18px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s;
}
.burger-dropdown button:hover {
  background: #f0f0f0;
}
@media (max-width: 600px) {
  #main-nav .nav-left button {
    font-size: 13px;
    padding: 7px 6px;
  }
  .burger-dropdown button {
    font-size: 13px;
    padding: 9px 12px;
  }
}
body {
  padding-top: 44px;
}

/* style.css Ergänzung für Monatsstatistik-Modul */
.monthly-statistics-module {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.monthyear-select-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.monthyear-select-wrapper select {
  font-size: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #f8f8f8;
}
.monthly-statistics-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  font-size: 1.1rem;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.monthly-statistics-values > div {
  min-width: 120px;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .monthly-statistics-module {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  .monthly-statistics-values {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Cash Reserve styles */
#cash-reserve-content {
  width: 100%;
  max-width: 1000px; /* Erhöhte Breite */
  margin: 0 auto;
}

.view-cashReserve .section-container {
  width: 100%;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-cashReserve .reserve-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.view-cashReserve .reserve-item {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-cashReserve .reserve-item:hover {
  background-color: #f5f9ff;
}

.view-cashReserve .reserve-item:last-child {
  border-bottom: none;
}

.view-cashReserve .reserve-name {
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 75%;
}

.view-cashReserve .reserve-location {
  color: #666;
}

.view-cashReserve .reserve-amount {
  font-weight: bold;
  color: #0066cc;
  text-align: right;
}

.view-cashReserve .total-amount {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
  text-align: right;
  font-size: 1.1em;
}

.view-cashReserve .total-amount-large {
  font-size: 1.3em;
  margin: 15px 0;
}

.view-cashReserve .actions-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.view-cashReserve .back-button,
.view-cashReserve .edit-button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.view-cashReserve .back-button {
  background-color: #f2f2f2;
  color: #333;
}

.view-cashReserve .edit-button {
  background-color: #0066cc;
  color: white;
}

.view-cashReserve .reserve-form {
  display: flex;
  flex-direction: column;
}

.view-cashReserve .reserve-form label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.view-cashReserve .reserve-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.view-cashReserve .form-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.view-cashReserve .add-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.view-cashReserve .cancel-button {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.view-cashReserve .bills-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.view-cashReserve .bill-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
}

.view-cashReserve .bill-item:last-child {
  border-bottom: none;
}

.view-cashReserve .bill-denomination {
  font-weight: bold;
}

.view-cashReserve .bill-count {
  text-align: center;
}

.view-cashReserve .bill-amount {
  text-align: right;
  color: #0066cc;
}

.view-cashReserve .bill-inputs {
  width: 100%;
  margin: 20px 0;
}

.view-cashReserve .bill-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.view-cashReserve .bill-input-row.header-row {
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}

.view-cashReserve .bill-input-row.total-row {
  border-top: 2px solid #ddd;
  border-bottom: none;
  padding-top: 15px;
  font-size: 1.1em;
}

.view-cashReserve .bill-input-row input {
  width: 80px;
  padding: 5px;
  text-align: center;
}

.view-cashReserve .bill-amount-calc {
  text-align: right;
  color: #0066cc;
}

.view-cashReserve #bills-total-amount {
  font-weight: bold;
  color: #0066cc;
}

.view-cashReserve .logs-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.view-cashReserve .log-item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.view-cashReserve .log-item:last-child {
  border-bottom: none;
}

.view-cashReserve .log-action {
  font-weight: bold;
  flex-basis: 40%;
}

.view-cashReserve .log-date {
  color: #666;
  flex-basis: 40%;
  text-align: right;
}

.view-cashReserve .log-details {
  flex-basis: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 0.9em;
  line-height: 1.4;
}

.view-cashReserve .log-details div {
  margin-bottom: 5px;
}

.view-cashReserve .log-toggle {
  flex-basis: 100%;
  text-align: center;
  margin-top: 8px;
  color: #4a6fa5;
  cursor: pointer;
  font-size: 0.9em;
  text-decoration: underline;
}

.view-cashReserve .log-toggle:hover {
  color: #2c4165;
}

.view-cashReserve .delete-container {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  border-top: 1px dashed #ddd;
}

.view-cashReserve .delete-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}


