body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
    margin: 1px;
  }
  
  .container {
    max-width: 1000px;
    max-height: 300px;
    margin:none;
    background-color: rgba(151, 231, 233, 0.8);
    padding: 1px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(150, 4, 4, 0.1);
    position:relative;
    z-index: 10;
    font-size: large;
    border-top:10px;
  }
  
  .header {
    text-align: center;
    margin-bottom: 10px;
  }
  
  h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    text-align: center;
    color: #090406;
    font-size: 50px;
    font-weight: heavily-transparent;
    font-style:normal;
    letter-spacing: 0.5px;
    animation: slideIn 1.6s ease-in-out;
    margin: 4px;
  }
  
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 0px;
    color: #00090c;
  }
  
  form {
    margin-top: 20px;
  }
  
  label {
    font-family: 'Courier New', Courier, monospace;
    display: block;
    margin-bottom: 10px;
    color: #721313;
  }
  
  select,
  input[type='number'] {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #7258b0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .button-primary {
    background-color: #007bff;
  }
  
  .button-primary:hover {
    background-color: #0056b3;
  }
  
  .button-secondary {
    background-color: #256eae;
  }
  
  .button-secondary:hover {
    background-color: #444c52;
  }
  
  .pagination {
    margin-top: 20px;
    text-align: center;
  }
  
  .pagination .button-primary,
  .pagination .button-secondary {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pagination .button-primary:hover,
  .pagination .button-secondary:hover {
    background-color: #0056b3;
  }
  
  .pagination .button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .pagination .button-disabled:hover {
    background-color: #333;
  }
  
  .pagination .button-next,
  .pagination .button-previous {
    display: inline-block;
    margin: 0 5px;
  }
  
  .transaction-form {
    margin-top: 30px;
  }
  
  .add-transaction h2 {
    color: #c52525;
    margin-bottom: 10px;
  }
  
  select, input[type='number'] {

    width: 80%;
    padding: 5px;
    border: 1.5px solid #050505;
    border-radius: 5px;
}

  .add-transaction form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .add-transaction label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    flex-basis: 100%;
  }
  
  .add-transaction select,
  .add-transaction input[type='number'] {
    width: calc(50% - 5px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .add-transaction select {
    color: #8d2121;
    background-color: #7f1515;
  }
  
  .add-transaction input[type='number'] {
    color: #333;
    background-color: #9b2323;
  }
  
  .add-transaction button {
    padding: 10px 20px;
    background-color: #150303;
    color: #dc3636;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  .add-transaction button:hover {
    background-color: #3c1e5b;
  }
  
  #transaction-list {
    margin-top: 30px;
    padding: 0;
    list-style-type: none;
  }
  
  .transaction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  .transaction:last-child {
    border-bottom: none;
  }
  
  .transaction .type {
    
    color:rgb(0, 0, 0);
    font-weight: bolder;
    font-family:Arial, Helvetica, sans-serif;
  }
  
  .transaction .category {
    margin-left: 0px;
    color: #070707;
    font-weight: bold;
  }
  
  .transaction .amount {
    margin-left: 0px;
    font-weight: bold;
  }
  
  .transaction .amount.income {
    color: #28a745;
  }
  
  .transaction .amount.expense {
    color: #dc3545;
  }
  
  .transaction .action-buttons button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #7258b0;
    color: #f9f5f5;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .transaction .action-buttons button:hover {
    background-color: #a54141;
  }
  
  .alert {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
  }
  
  .alert p {
    margin: 0;
  }
  
  .alert.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
  }
  
  .alert.alert-success p {
    margin: 0;
  }
  
  .balance {
    margin-top: 0px;
    display: center;
    align-items: center;
    
    font-size: 18px;
  }
  
  .balance-label {
    font-weight: bold;
    color: #555;
    margin-right: 0px;
  }
  
  .balance-amount {
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    color: #050900; /* Replace #FF0000 with your desired color */
  }
  
  
  .img-fluid logo {
    width: 20px; /* Adjust the width to your desired size */
    height: 10px; /* Preserve the aspect ratio */
  }
  
  
  .logo{
    width: 600px;
    height: 150px;
  }

 
