/**
 * @Project NUKEVIET 4.x
 * @Author DACLOI.,JSC <>
 * @Copyright (C) 2025 DACLOI.,JSC. All rights reserved
 * @License: Not free read more http://nukeviet.vn/vi/store/modules/nvtools/
 * @Createdate Tue, 30 Sep 2025 04:19:46 GMT
 */
.doctor-profile {
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    gap: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-left {
    text-align: center;
    width: 250px;
    flex-shrink: 0;
}

.profile-left img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: #e6f0ff;
    color: #2d5ac8;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.profile-left h2 {
    font-size: 20px;
    margin: 5px 0;
}

.profile-left p {
    font-size: 14px;
    color: #555;
}

.profile-right {
    flex: 1;
}

.profile-right h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.highlight-box {
    background: #e9f7fb;
    border-left: 4px solid #21a1c9;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.section-title {
    font-weight: bold;
    margin: 15px 0 8px;
    color: #333;
}

.profile-right ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 15px;
}

.profile-right ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.profile-right a {
    color: #0088cc;
    text-decoration: none;
}

.profile-right a:hover {
    text-decoration: underline;
}