/* 기본 스타일 */
body {
    font-family: Arial, sans-serif;
    background-color: #ecf0f1;
    color: #34495e;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
}

/* 타이머 표시 */
#timer {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #1abc9c;
}

/* 입력 컨테이너 */
.input-container {
    margin: 20px 0;
}

.input-container label {
    font-size: 16px;
}

.input-container input {
    width: 50px;
    font-size: 16px;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
}

/* 버튼 스타일 */
button {
    background-color: #1abc9c;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #16a085;
}

/* 버튼 컨테이너 */
.button-container {
    margin: 20px 0;
}

/* 선택된 소리 이름 표시 */
.sound-name {
    font-size: 14px;
    margin-top: 10px;
    color: #e74c3c; /* 기본적으로 오류 색상 */
}

/* 상태 메시지 */
#status-message {
    margin-top: 20px;
    font-size: 14px;
    color: #e74c3c; /* 기본값: 비활성화 상태 */
}

#made-by {
    margin-top: 10px;
    font-size: 14px;
    color: #3498db; /* 파란색 */
}

