body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffe4e1 0%, #ffffff 100%);
    margin: 0;
    padding: 0 40px 100px;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background 0.5s;
}

h1 {
    text-align: center;
    color: #d81b60; /* 핑크 색상 */
    font-size: 3.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    font-weight: bold;
}

input[type="text"] {
    width: 80%;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #d81b60; /* 핑크 색상 */
    border-radius: 20px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus {
    border-color: #c2185b; /* 핑크 색상 */
    outline: none;
    box-shadow: 0 0 10px rgba(224, 64, 251, 0.5);
}

button {
    background-color: #d81b60; /* 핑크 색상 */
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(224, 64, 251, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background-color: #c2185b; /* 핑크 색상 */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 64, 251, 0.5);
}

#result {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #d81b60; /* 핑크 색상 */
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    line-height: 1.6;
    transition: transform 0.3s;
}

#result:hover {
    transform: scale(1.02);
}

#result p {
    margin: 0;
    padding: 10px;
    background-color: #fce4ec; /* 연한 핑크 색상 */
    border-left: 5px solid #d81b60; /* 핑크 색상 */
}

#suggestions {
    border: 1px solid #d81b60; /* 핑크 색상 */
    position: absolute;
    background: white;
    z-index: 1000;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#suggestions div:hover {
    background-color: #f8bbd0; /* 연한 핑크 색상 */
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #d81b60; /* 핑크 색상 */
}

.language-selector {
    display: inline-block;
}

.language-selector label {
    margin-right: 10px;
    font-weight: bold;
}

.language-selector select {
    padding: 10px;
    border: 2px solid #d81b60; /* 핑크 색상 */
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.language-selector select:hover {
    border-color: #c2185b; /* 핑크 색상 */
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    flex: 1;
    margin-right: 10px;
}

button {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

button:hover {
    background-color: #c2185b; /* 핑크 색상 */
}

/* 추가된 카드 스타일 */
.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px 0;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.02);
}
