* {
        font-family: 'Gabriela', sans-serif;

      }
header {
    height: 200px;
    /* background-color: black; */
    background-color:#f6f7f9;
}
header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section{
    background-color:#f6f7f9;
}


footer{
    height: 300px;
    background-color:#f6f7f9;
}
.base-fixed {
    max-width: 1200px;
    background-color:#f6f7f9;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 30px;

}
.base-fixed h2{
    padding-bottom: 20px;
    font-weight: bold;
}
.first-block {
    height: 400px;
    background-color:#f6f7f9;
}
.rowalign {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
}
.image-grid{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.mg-20{
  margin-bottom: 20px;
}
.a-link{
  text-decoration: none;
}
.btn-white{
    background-color:white;
}
.btn-blue{
    background-color:rgb(13, 110, 253);
}
.btn-main {
    border-radius: 55px;
    margin:5px;
    min-height: 2em;
    padding: 8px;
    width:80%;
    display:flex;
    justify-content: center;
    font-weight: 700;
  }

.popup-container{
    background-color: #00000085;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-form{
    background-color: white;
    width: 300px;
    height: 300px;
    padding: 30px;
    border-radius: 5px;
}
.bg-orange{
  --bs-bg-opacity: 1;
  background-color: #FF6400 !important;
}
.fw-800{
  font-weight: 800;
}
.fs-15{
    font-size: 1.5rem !important;
}
.btn-change {
    color: black;
}
.btn-delete {
    color: red;
}

.card-body-hero {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border-radius: 0 0 20px 20px;
}

.expense-card {
          transition: transform 0.2s;
      }
.expense-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: #c5c5c5;
    background: linear-gradient(135deg, rgba(108, 195, 155, 0.1) 0%, rgba(255,255,255,0) 100%);
    }

.person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    }
.calculation-badge {
    font-size: 0.9rem;
}
    @media (max-width: 768px) {
        .section-header {
            flex-direction: column;
            align-items: flex-start;
        }
        .section-header .btn {
            margin-top: 10px;
            width: 100%;
        }
    }

/*for cost detail*/

.expense-form-card {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: none;
}
.form-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0 !important;
}
.participant-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin: 0 8px 8px 0;
    border-radius: 20px;
    border: 2px solid #dee2e6;
    background-color: white;
    transition: all 0.2s;
    cursor: pointer;
}
.participant-btn:hover {
    border-color: #adb5bd;
}
.participant-btn.active {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.participant-checkbox {
    position: absolute;
    opacity: 0;
}
@media (max-width: 768px) {
    .expense-form-card {
        border-radius: 0;
    }
    .participant-btn {
        padding: 5px 10px;
        margin: 0 5px 5px 0;
    }
}
/* popup*/

.delete-confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.delete-confirmation-popup .popup-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.delete-confirmation-popup .popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.absolute {
  position: absolute;
}
.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.bg-blue-color {
  --tw-bg-opacity: 1;
  background-color: rgb(13, 110, 253);
}
.rounded-full {
  border-radius: 9999px;
}
.relative {
  position: relative;
}
.left-3 {
  left: -.75rem;
  width: 2rem;
  height: 2rem;
}
.top-3 {
  top: -.75rem;
}

.faq-h{
  display: flex;
  justify-content: center;
  color: rgb(13, 110, 253);
  font-weight: 600;
}
.faq-img{
  max-width: 100%;
  display:flex;
  justify-content: center;
}
.faq-width{
  width: 100%;
}