/* utv.css */

/* URL 결과 스타일 */
.result {
    margin-top: 15px;
    padding: 10px;
    background-color: #dff0d8;
    border: 1px solid #c3d6c5;
    border-radius: 4px;
    color: #3c763d;
    cursor: pointer;
    word-wrap: break-word;
    display: inline-block;
    max-width: 90%; /* 긴 URL의 포맷 */
    position: relative;
}

/* 정보창 스타일 */
.info {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    text-align: center; /* 중앙 정렬 */
}

}

.info:hover {
    color: #444; /* 마우스 오버 시 색상 변경 */
    text-decoration: underline; /* 마우스 오버 시 밑줄 */
}
