.search-area {
    position: absolute;
    top: 10%;
    left: 12.5%;
    width: 75%;
    height: 75%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 10px rgba(0, 0, 0, 0.75);
    overflow-y: auto;
}

.search-area-list {
    height: 90%;
}

.search-area-card {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #000000;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-left: 16px;
}

.search-area-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 24px;
}

.search-area-card-name {
    font-family: "Sour Gummy", serif;
    color: #000000;
    font-size: 32px;
}

.search-area-card-translated-name {
    font-family: "Sour Gummy", serif;
    color: #666666;
    font-size: 32px;
    margin-left: 12px;
}

.search-area-card-empty {
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-area-list {
    list-style-type: none;
    padding: 32px;
    margin: 0;

}

.search-area-list li:hover {
    cursor: pointer;
    background-color: #999999;
}