.container {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
} 
/* #searchBar{
    width: 20px;
} */

#resultsContainer {
    margin-top: 20px;
    text-align: center;  
}

#standardSearchText {
    width: 153px;
    height: 38px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    background-color: #0B58CA;
    color: white;
    text-align: center;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#standardSearchText p {
    margin: 0; 
}

#advancedSearchButton{
    width: 153px; 
    height: 38px;
}
#search_btn{
    width: 153px; 
    height: 38px;
}




.character {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
}
  



.person-details-header, .character {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.person-summary, .person-details {
    width: 100%;
}

.detail-label {
    flex: 1;
}

.detail-value {
    flex: 2; 
}

.person-details {
    display: none;
    padding-top: 10px;
}


.person-summary {
    cursor: pointer;
    font-weight: bold;
}
.person-details-header, .person-summary, .person-details {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.detail-item {
    flex: 1;
    text-align: center;
}

#newButton {
    margin-left: 10px; 
}

.toggle-icon {
    display: inline-block;
    width: 101px; 
    text-align: center;
}
.person-details-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;  
}