
div.card {
    border: none;
    background-color: transparent;
    margin-bottom: 30px;
}

 div.card-header {
    background: transparent;
    color: #00adef;
    border-bottom: 1px solid #00adef;
    font-size: 1.5rem;
    padding: 10px 0;
    margin-bottom: 15px;
}
 div.card-header h2 {
    color: #00adef;
    font-size: 1.5rem;
    margin: 0;
}
 div.card-body {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
}
button.btn-primary {
    background-color: #4c7c00;
    border-color: #4c7c00;
    border-radius: 50px;
    padding: 10px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
}
 button.btn-primary:hover {
    background-color: #3a5f00;
    border-color: #3a5f00;
}
form.phoneboook-search-holder {
    display: none;
}
.phonebook.active > h2 {
  padding: 10px;
}

.phonebook h2 a {
  color: inherit;
}

.phonebook.active {
  margin-bottom: 15px;
  border: 1px solid var(--web-primary-color);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.phonebook.active > h2 {
  background: var(--web-primary-color);
  color: #fff;
}

.phonebook > h2 > a > em:before {
  content: "f137";
}

.phonebook.active > h2 > a > em:before {
  content: "f13a";
}

.phonebook .info {
  display: none;
  background: #f1f1f1;
  padding: 15px;
}

.phonebook .info:focus {
  outline: 0;
}
.phoneboook-search-holder .inner input {
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #00adef;
    outline: none;
}

.phonebook h2 {
    border-bottom: 1px solid #00adef;
    margin: 0 0 10px 0;
    background: transparent;
    padding: 0;
        font-size: 1.5rem;
}

.phonebook h2 a {
    color: #00adef;
    padding: 12px 0;
    gap: 12px;
    display: flex;
    justify-content: right;
    align-items: center;
    text-decoration: none;
    font-weight: normal;
}

.phonebook h2 a em {
    font-style: normal;
}
.phonebook h2 a em:before {
    content: "\f139";
    font-family: "FontAwesome";
    font-size: 1.2rem;
}

section.phonebook.active {
    border: 1px solid #00adef;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 15px;
}

section.phonebook.active > h2 {
    background: #00adef;
    border-bottom: none;
    padding: 0 15px; 
    border-radius: 14px 14px 0 0;

}

section.phonebook.active > h2 a {
    color: #ffffff;
}

section.phonebook.active > h2 a em:before {
    content: "\f13a"; /* fa-chevron-circle-down */
}

.phonebook .info {
    background: #ffffff;
    padding: 20px;
}

.phonebook .member {
    background: #f8f9fa;
    border: 1px solid #ebf0f3;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.phonebook .member strong {
    font-size: 1.2rem;
    color: #333;
    display: block;
}

.phonebook .member .searchable:nth-of-type(2) {
    display: inline-block;
    color: #777;
    padding-bottom: 5px;
    border-bottom: 2px solid #00adef;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.phonebook .contact-info {
    display: block;
    float: none;
    width: 100%;
    margin: 8px 0;
}

.phonebook .contact-info a {
    display: inline-flex;
    flex-direction: row-reverse; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
}

.phonebook .fa-stack {
    width: auto;
    height: auto;
    line-height: normal;
}

.phonebook .fa-circle.fa-stack-2x {
    display: none;
}

.phonebook .fa-stack-1x {
    color: #00adef;
    position: static;
    font-size: 1.1rem;
}

.phoneboook-search-holder {
  margin-bottom: 30px;
}

.phoneboook-search-holder .inner {
  position: relative;
}

.phoneboook-search-holder .search-results {
  position: absolute;
  top: 10px;
  left: 50px;
  font-size: 1.2em;
}

.phoneboook-search-holder input {
  border: 0;
  width: 100%;
  font-size: 1.2em;
  font-family: "Open Sans Hebrew", arial;
  padding: 10px;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.phoneboook-search-holder button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 0 10px;
  background: none;
  border: 0;
}
@media (max-width: 767px) {
    .phonebook .member .row {
        flex-direction: column;
    }
    .phonebook .col-md-5, .phonebook .col-md-7 {
        width: 100%;
    }
}
