* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.index {
    min-height: 100vh;
    min-height: 100dvh;
    background-image: url("img/bg.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #e0f7f7;
  overflow-x: hidden;
}

.container-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.container-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: linear-gradient(to left, #008486, #203B3D);
    border-top-right-radius: 100vw;
    border-bottom-right-radius: 100vw;
    transition: all 0.8s ease-in-out;
}

.container-title.move-right {
    left: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 100vw;
    border-bottom-left-radius: 100vw;
    background: linear-gradient(to left, #203B3D, #008486);
    transition: all 0.8s ease-in-out;
}

.container-title button {
    background: none;
    position: absolute;
    color: #f9f9f9;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px;
    font-size: 30px;
    top: 330px;
    left: 550px;
    transition: all 0.8s ease-in-out;
    border: none;
    background-color: #005f60;
}

.container-title button:hover {
  background-color: #005f60;
  border: 1px solid #203B3D;
}

.container-title.move-right button {
    left: 50px;
}

.container-title h1 {
    background: none;
    position: absolute;
    color: #f9f9f9;
    border-radius: 100%;
    padding: 10px;
    font-size: 40px;
    top: 150px;
    left: 150px;
    font-size: 5rem;
    transition: all 0.8s ease-in-out;
}

.container-title.move-right h1 {
    left: 150px;
}

.container-title p {
    background: none;
    position: absolute;
    color: #f9f9f9;
    border-radius: 100%;
    padding: 10px;
    font-size: 40px;
    top: 250px;
    left: 150px;
    font-size: 2rem;
    transition: all 0.8s ease-in-out;
}

.container-title.move-right p {
    left: 150px;
}

.login-form{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 320px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 5; /* Form is above everything */
  }

  .signUp-form {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 440px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 4; /* Form is above everything */
  }

  .signUp-form p {
    font-size: 10px;
  }

  .signUp-form .alreadyHave {
    font-size: 15px;
  }

.login-form.show, .signUp-form.show {
    opacity: 1;
    pointer-events: auto;
  }

.login-form h2, .signUp-form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"],
.signUp-form input[type="text"],
.signUp-form input[type="password"],
.signUp-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
  }

.formButton {
    width: 100%;
    padding: 12px;
    background: #008486;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
  }

.formButton:hover {
    background: #005f60;
  }

.move-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #203B3D;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 6; /* Button on top */
  }

.question {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

.question button {
    background: none;
    border: none;
    margin-left: 7px;
    margin-top: 2px;
  }

.question button:hover {
    color: #008486;
    cursor: pointer;
  }

/* Sidebar base */
.sidebar {
  width: 60px;
  background: #005f60;
  height: 100vh;
  transition: width 0.3s ease;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.sidebar.expanded {
  width: 200px;
}

/* Burger icon stays top-left */
.burger {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

/* Sidebar items */
.sidebar ul {
  list-style: none;
  margin-top: 60px; /* Give space below burger */
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 15px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

@media (min-width: 200px) and (max-width: 1024px) {
  .sidebar ul li a {
    padding: 8px;
    font-size: small;
  }

  .sidebar.expanded {
    width: 170px;
  }

  .sidebar {
    width: 50px;
  }
}

.sidebar ul li a:hover {
  background: #34495e;
}

.btnActive {
  background: #34495e;
}

.sidebar .icon {
  font-size: 20px;
  margin-right: 10px;
  min-width: 24px;
  text-align: center;
}

.sidebar .label {
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.sidebar.expanded .label {
  opacity: 1;
}

.sidebar img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  overflow: hidden;
}

.main {
  margin-left: 60px;
  padding: 20px;
  padding-top: 60px;
  transition: margin-left 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}

.sidebar.expanded ~ .main {
  margin-left: 100px;
}

.account-summary {
  max-width: 700px;
  width: 100%;
  max-height: 600px;
  height: 100%;
  padding: 20px;
  background: #c6d7d6;
  border-radius: 20px;
}

.account-summary h2 {
  font-size: 1.5rem;
}

@media (min-width: 200px) and (max-width: 1024px) {
  .account-summary h2 {
    font-size: 0.7rem;
  }
}

.account-summary-account-number p{
  font-size: 1.5rem;
}

.account-summary-account-number p:first-child{
  font-size: 1rem;
  color: #333;
  font-weight: 100;
}

.account-summary-account-number {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
  background: #e0f7f7;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.account-summary-balance p{
  font-size: 1.5rem;
}

.account-summary-balance p:first-child{
  font-size: 1rem;
  color: #333;
  font-weight: 100;
}

.account-summary-balance {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
  background: #e0f7f7;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
}

.account-summary-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  width: 100%;
  background: #e0f7f7;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.account-summary-profile img {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #333;
}

.account-summary-profile p {
  font-size: 1.2rem;
  font-weight: 500;
}

.account-summary-profile p:last-child {
  font-size: 0.8rem;
  font-weight: 400;
}

.recent-transactions {
  margin-top: 10px;
}

.recent-transactions h2 {
  font-size: 1.5rem;
  color: #333;
}

.recent-transact {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 15px;
  background-color: #e0f7f7;
  border-radius: 10px;
}

.account-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  gap: 0;
  background: transparent;
}

/* Grid positioning */
.account-save {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background-color: #c6d7d6;
  border-radius: 10px 0px 0px 10px;
  border-right: 1px solid #000000;
  padding: 20px;
  width: 400px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.account-save img {
  border-radius: 100%;
  overflow: hidden;
  height: 100px;
  width: 100px;
}

.account-save .account-name {
  text-align: center;
}

.account-save h5 {
  font-size: 1.2rem;
  margin-top: 10px;
}

.account-save .userEmail {
  font-size: 0.8rem;
  margin-top: 5px;
}

.change-photo {
  margin-top: 40px;
  margin-bottom: 50px;
}

.change-photo-btn {
  padding: 10px 20px;
  background: #008486;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 200px;
  margin-right: 10px;
}

.change-photo-btn:hover {
  background: #005f60;
}

.change-photo-btn i {
  margin-right: 10px;
}

.form-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-selection-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 200px;
  margin-top: 10px;
}

.form-selection-btn:hover {
  background: #005f60;
  color: white;
}

.active {
  background: #008486;
  color: white;
  border: 2px solid #333;
}

.show {
  display: block;
}

.hidden {
  display: none;
}

.user-form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.user-form h3 {
  margin-bottom: 10px;
}

.user-form i {
  margin-right: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group .input-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.form-group .input-group .input-group-text {
  background-color: #f8f9fa;
  padding: 10px;
  border: 1px solid #ced4da;
  border-right: none;
}

.form-group .input-group .form-control {
  flex-grow: 1;
  border-left: none;
  padding: 10px;
  width: 100%;
}

label {
  margin-bottom: 3px;
  font-weight: 300;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}

.save {
  padding: 10px 20px;
  background: #008486;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 150px;
  margin-right: 10px;
}

.save:hover {
  background: #005f60;
}

.cancel {
  padding: 10px 20px;
  background: #c6d7d6;
  color: #333;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 150px;
  border: 1px solid #333;
  text-decoration: none;
}

.cancel:hover {
  background: #a3b1b1;
}

.account-edit {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background-color: #d8eae9;
  border-radius: 0px 10px 10px 0px;
  padding: 20px;
  width: 700px;
}


/* Responsive Layout for Tablet and Mobile */
@media (min-width: 200px) and (max-width: 1024px) { 
  .index {
    min-height: 100vh;
    min-height: 100dvh;
    background-image: url("img/bg.jpeg");
    background-size: cover;
    background-position: 0px 280px;
    background-repeat: no-repeat;
  }

  .container-wrapper {
    flex-direction: column;
    height: 100vh;
  }

  .container-title {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0;
    text-align: center;
    padding: 40px 20px;
  }

  .container-title h1 {
    position: static;
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .container-title p {
    position: static;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .container-title button {
    position: static;
    font-size: 1.2rem;
    padding: 12px 20px;
    margin-top: 20px;
    left: auto;
  }

  .container-title.move-right {
    left: 0;
    border-radius: 0;
  }

  .login-form,
  .signUp-form {
    position: static;
    transform: none;
    width: 90%;
    height: auto;
    margin: 20px auto;
    margin-bottom: 300px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }

  .login-form.show,
  .signUp-form.show {
    opacity: 1;
    pointer-events: auto;
  }

  .question {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .question button {
    margin-top: 5px;
    margin-left: 0;
  }

  .account-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .account-save {
    width: 100%;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    border-right: none;
    border-bottom: 1px solid #000;
    height: auto;
  }

  .account-edit {
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 10px 10px;
  }

  .form-selection {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-selection-btn {
    width: auto;
    margin: 5px;
  }

  .change-photo-btn,
  .form-selection-btn,
  .save,
  .cancel {
    width: 100%;
  }

  .save {
    margin-bottom: 10px;
  }

  .account-save img {
    height: 80px;
    width: 80px;
  }

  .account-save h5 {
    font-size: 1rem;
  }

  .account-save .userEmail {
    font-size: 0.8rem;
  }

  .user-form {
    padding: 15px;
  }

  .recent-transact {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 15px;
    font-size: 0.5rem;
  }

  .transaction {
    background: #e0f7f7;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #34495e;
    font-size: 0.5rem;
  }

  .account-summary-profile img {
  height: 50px;
  width: 50px;
}
}

.transact-history, .loan-request-list {
  width: 100%;
  max-width: 1100px;
  background: #c6d7d6;
  min-height: 600px;
  padding: 20px;
  border-radius: 20px;
}

.transact-history h2, .loan-request-list h2 {
  margin-bottom: 20px;
  color: #333;
}

.transaction {
  background: #e0f7f7;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #34495e;
}

/* Base table styling */
.transaction-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: Arial, sans-serif;
}

/* Table headers */
.transaction-table thead th {
  background: #34495e;
  color: white;
  padding: 15px;
  text-align: center;
  white-space: nowrap;
}

/* Table row background and border */
.transaction-table tbody tr {
  background: #e0f7f7;
  border: 1px solid #34495e;
  border-radius: 10px;
  overflow: hidden;
}

/* Table cell padding and border */
.transaction-table tbody td {
  padding: 15px;
  border-top: 1px solid #ccc;
  text-align: center;
  white-space: nowrap;
}

/* Remove top border for first row */
.transaction-table tbody tr:first-child td {
  border-top: none;
}

/* Hover effect */
.transaction-table tbody tr:hover {
  background-color: #d0eeee;
  cursor: pointer;
}

/* Scrollable table wrapper on small screens */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Responsive stacking on very small screens */
@media (min-width: 200px) and (max-width: 1024px) {
   .transaction-table thead {
    display: none;
  }

  .transaction-table,
  .transaction-table tbody,
  .transaction-table tr,
  .transaction-table td {
    display: block;
    width: 100%;
  }

  .transaction-table tbody tr {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #34495e;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
  }

  .transaction-table td {
    padding: 10px 15px 10px 120px; /* make space for ::before label */
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
    font-size: 0.9rem;
    white-space: normal; /* allow wrapping */
    word-wrap: break-word; /* allow long strings to break */
  }

  .transaction-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 10px;
    width: 100px;
    padding-right: 15px;
    white-space: normal;
    font-weight: bold;
    color: #34495e;
    text-align: left;
  }

  .transaction-table td:last-child {
    border-bottom: none;
  }
}

.filters {
  display: flex;
  gap: 20px;
  width: 100%;
}

.date-range {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transaction-type {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters select {
  width: 120px;
  height: 30px;
  border-radius: 5px;
}

@media (min-width: 200px) and (max-width: 1024px) {
  .filters select {
    width: 60px;
    height: 20px;
    border-radius: 2px;
  }
  .transaction-type, .date-range {
    font-size: 0.8rem;
    gap: 5px;
  }
}

.filters select:focus {
  outline: none;
}

.loan-credit-management {
  max-width: 1100px;
  width: 100%;
  height: 600px;
  padding: 20px;
  background: #c6d7d6;
  border-radius: 20px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.nav-buttons button {
  width: 150px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid #008486;
  text-align: center;
}

.nav-buttons button:hover {
  background: #008486;
  color: #f9f9f9;
  transition: 0.3s ease all;
  cursor: pointer;
}

.nav-buttons button.active {
  background: #008486;
  color: #f9f9f9;
}

.loan-status {
  margin-top: 10px;
  padding: 20px;
  background: #d8eae9b5;
  border-radius: 10px;
}

.loan-status h3 {
  margin-bottom: 30px;
}

.loan-status p {
  margin-bottom: 20px;
}

.loan-status hr {
  margin-bottom: 20px;
}

.loan-text-info {
  display: flex;
  justify-content: space-between;
}

.loan-payment-button {
  display: flex;
  justify-content: end;
}

.loan-payment-button button {
  background: #008486;
  color: #f9f9f9;
  width: 150px;
  height: 30px;
  border-radius: 5px;
  border: none;
}

.loan-payment-button button:hover {
  background: #005f60;
  color: #f9f9f9;
  transition: 0.3s ease all;
  cursor: pointer;
}

.loan-request {
  margin-top: 10px;
  padding: 20px;
  background: #d8eae9b5;
  border-radius: 10px;
}

.loan-request-form {
  padding: 20px 25px;
  border-radius: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.loan-request-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.loan-request-form input,
.loan-request-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.loan-request-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #007b8f;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.loan-request-form button:hover {
  background-color: #005e6d;
}

.loan-calculator {
  max-width: 1100px;
  height: 475px;
  margin-top: 10px;
  background-color: #d8eae9b5;
  padding: 20px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.loan-calculator h3 {
  margin-bottom: 20px;
}

.loan-calculator-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.loan-inputs {
  flex: 1;
  min-width: 240px;
}

.loan-inputs label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.loan-inputs input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.loan-results {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.loan-results button {
  background-color: #007b8f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}

@media (min-width: 200px) and (max-width: 1024px) {
  .loan-results button {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .loan-calculator-content {
    margin-bottom: 10px;
  }

  .loan-inputs label {
    font-weight: normal;
  }

  .loan-inputs {
    margin-bottom: 2px;
  }

  .loan-summary p {
    margin: 4px 0;
    font-size: 10px;
  }
}

.loan-results button:hover {
  background-color: #005e6d;
}

.loan-summary {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

.loan-summary p {
  margin: 8px 0;
  font-size: 15px;
}

.fund-transfer {
  max-width: 1100px;
  width: 100%;
  height: 600px;
  padding: 20px;
  background: #c6d7d6;
  border-radius: 20px;
}

.fund-transfer h3 {
  font-size: 1.5rem;
}

.fund-transfer-form {
  max-width: 1100px;
  height: 500px;
  margin-top: 10px;
  background-color: #d8eae9b5;
  padding: 20px;
  border-radius: 10px;
}

.fund-transfer-form button {
  background-color: #007b8f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
  width: 100%;
}

.fund-transfer-form button:hover {
  background-color: #005e6d;
}

.fund-transfer-form input {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.fund-transfer-form .input-group:last-child {
  margin-top: auto;
}

.transfer-summary p {
  margin-bottom: 14px;
}

.transfer-summary-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

.spacer {
  margin-bottom: 50px;
}

.currency-conversion {
  max-width: 1100px;
  width: 100%;
  height: 400px;
  padding: 20px;
  background: #c6d7d6;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency-conversion h3 {
  font-size: 1.5rem;
}

.currency-conversion label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.currency-conversion input,
.currency-conversion select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.currency-conversion button {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background-color: #007b8f;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.currency-conversion button:hover {
  background-color: #005e6d;
}

.currency-conversion p#result {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.currency-conversion-content {
  background: #d8eae9b5;
  max-width: 1100px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
}

.loan-request-container {
  margin-top: 10px;
  padding: 20px;
  background: #d8eae9b5;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
}

.loan-request-container > :last-child {
  margin-left: auto;
}

.loan-request-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loan-request-controls button {
  width: 100px;
  padding: 10px;
  background-color: #007b8f;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.loan-request-controls button:hover {
  background-color: #005e6d;
}