@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

body {
    font-family: 'Nanum Gothic', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #5a4b8c;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-size: 1.1em;
}

#cat-container {
    margin: 20px 0;
}

#cat-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#test-container {
    text-align: left;
    margin-top: 20px;
}

.question {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.question p {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    margin-top: 0;
}

.question label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
    font-size: 1em;
    color: #555;
}

.question label:hover {
    color: #5a4b8c;
}

#submit-btn {
    background-color: #5a4b8c;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s;
    width: 100%;
}

#submit-btn:hover {
    background-color: #43356e;
}

#result-container {
    margin-top: 30px;
    padding: 20px;
    background: #eef2f7;
    border-radius: 8px;
    border-left: 5px solid #5a4b8c;
}

#result-container h2 {
    color: #5a4b8c;
}

#result-type {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
}

#result-description {
    font-size: 1.1em;
    color: #555;
}

.hidden {
    display: none;
}
