/* CSS for the entire application */
@import url("https://fonts.googleapis.com/css2?family=Bungee+Tint&display=swap");

.bungee-tint-regular {
  font-family: "Bungee Tint", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Base styling */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  /* Base font size for desktop */
  font-size: 22px;
}

/* Card Styling */
.card {
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
  text-align: center;
  font-weight: 500;
}

.card:hover {
  transform: scale(1.02);
}

/* Navbar Brand Adjustments */
.navbar-brand,
.nav-item {
  font-weight: bold;
}

.navbar-brand {
  font-family: "Bungee Tint", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}

/* ALL TENANT */
.tenant {
  border: 2px solid #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

/* PICK TENANT */
.margin-top {
  margin-top: 30px;
}

.tenant-name {
  color: red;
}

/* TENANT DETAILS */
.b-start,
.b-end {
  font-size: inherit;
}

.usage-table {
  font-size: 15px;
}

/* MONTHLY USAGE */
.text {
  font-size: 20px;
}

.big-gen {
  border: 2px solid #000;
}
.small-gen {
  border: 2px solid #722222;
}

/* TENANT NAME AT THE ALL TENANT PAGE */
.user-name {
  color: red;
}

/* MAIN-BODY */
.main-body {
  padding-top: 5rem;
}



/* TENANT RECEIPT PAGE */
.receipt-container {
  max-width: 600px;
  margin: 50px auto;
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.receipt-header {
  text-align: center;
  margin-bottom: 30px;
}
.receipt-header h2 {
  text-transform: uppercase;
  color: #28a745;
}
.receipt-details {
  font-size: 16px;
}
.receipt-details .row {
  margin-bottom: 15px;
}
.total-amount {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-top: 30px;
}
.receipt-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}


/* TENANT DBILL PAGE */
.form-section {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.select-month {
  color: #fff;
} 




/* Responsive text sizes and layout adjustments */
@media (max-width: 768px) {
  /* Increase overall font size on mobile for readability */
  body {
    font-size: 25px;
  }

  .card h4,
  .card .card-body span {
    font-size: 1.4em; /* Larger text in cards */
  }

  .navbar-brand {
    font-size: 1.2em;
  }
}

/* Extra adjustments for very small devices */
@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }

  .main-body {
    padding-top: 7rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  .small-input {
    width: 150px;
    /* font-family: none; */
  }

  .navbar-brand {
    width: 50px;;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
}
