/* Extracted inline styles from HTML files */

/* From mypage.html - User profile circle */
.profile-circle {
    width: 100px;
    height: 100px;
}

/* From search.html - Search form and loading */
#search-form {
    height: 30px;
    width: 98%;
    margin: 0 auto;
}

#blank-warn {
    color: red;
    text-align: center;
    margin: 6px auto;
    display: none;
}

#loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bolder;
}

#loading img {
    width: 50px;
    height: 50px;
}

/* From detail.html - Table cell styling */
.detail-td {
    font-weight: 500;
}

/* From detail.html - Connected items */
.connected-item {
    display: flex;
}