/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

/* header */
header{
    margin-bottom: 5rem !important;
}

#logo{
    width: 63px;
}

.navbar {
    background: linear-gradient(90deg, rgb(189, 210, 233), rgb(8, 126, 250));
}

.navbar-nav {
    display: flex;
    justify-content: space-evenly; /* Distribui os itens igualmente */
    width: 100%; /* Garante que ocupe toda a largura disponível */
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
h1, h2 {
    color: rgb(1, 122, 253);
}
.card {
    border: none;
    border-radius: 10px;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}
.list-group-item {
    border: none;
}

select.form-control, .custom-select {
  font-size: 0.875rem;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  /* Ensure same height as text inputs (Bootstrap 4 default ~38px) */
  height: calc(1.5em + .75rem + 2px);
}

.autocomplete-dropdown {
    max-height: 200px;
    overflow-y: auto;
}

/* Footer */
#footer {

}

/* Form */
#type-orcamento{
    background-color: #fff;
}

/* Results */
#orcamento-container {
    border: 1.5px solid rgb(1, 122, 253);
    border-radius: 10px;
    padding: 24px 18px;
    background: #fff;
}

/* Keep action buttons in input-groups same height as controls */
.input-group .btn {
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

/* Force consistent vertical sizes within donation page input-groups */
.doacao-input-group .form-control,
.doacao-input-group .custom-select {
    font-size: 1rem;
    height: 38px !important; /* Bootstrap 4 default control height */
}
.doacao-input-group .input-group-append .btn,
.doacao-input-group .input-group-prepend .btn {
    font-size: 1rem;
    height: 38px !important;
}
