body {
    padding-top: 60px;
    width: 90%;
    margin: 0 auto;
}
.container {
    width: 100%;
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
}
.seiyuu-image {
    max-width: 100px;
    max-height: 150px;
}
.cookie-setter {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1000;
}
.search-container {
    width: 50%;
    margin: 0 auto;
}

.suggestions1 {
    width: 50%;
    margin: 0 auto;
}
.suggestion-list {
    display: none;
    position: absolute;
    width: 44%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1000;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin-right: 10px;
}
.seiyuu-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}
.character-image-popup {
    position: absolute;
    display: none;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 5px;
}
.character-image-popup img {
    max-width: 150px;
    max-height: 200px;
}
.common-seiyuu-wrapper {
width: 50%;
margin: 0 auto;
}

.theme-switch {
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #666;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.theme-switch:hover {
    opacity: 0.9;
}

/* Icons for sun and moon */
.theme-switch .icon {
    width: 14px;
    height: 14px;
}