
.character-quotes {
    margin: 20px auto;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
}

.back-btn {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: #E77D11;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.character_info {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
}


.character_info img {

    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(255, 28, 28);
}

.character_details {
    flex: 1;
    text-align: center;
}

.character_details h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    color: #222;
}

.character_details h3 {
    font-size: 16px;
    margin-top: 5px;
    color: #555;
}


.character_quotes {
    margin-top: 20px;
}

.quote_info {
    background: white;
    padding: 15px;
    border-left: 5px solid #E77D11;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-family: 'Mochiy Pop One', sans-serif;
    color: hsl(0, 0%, 20%);
    padding: 10px;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
    font-size: 12px;
}

.quote-chapter {
    font-size: 16px;
    text-align: right;
    color: #777;
}

.quote_vote_info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.vote-icon {
    color: grey;
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-right: 10px;
}

 .vote-icon.voted {
    color: rgb(116, 174, 255);
}

.quote_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.quote_footer .quote_vote {
    display: flex;
    flex-direction: row;
    align-items: center;
}