.sg-technician-profile {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 60px;
    box-sizing: border-box;
}

body.sgtechnician-profile-view .column.main {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    flex-basis: 100% !important;
}

.sg-technician-profile-top {
    margin-bottom: 25px;
}

.sg-technician-back {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.sg-technician-back:hover {
    color: #00c900;
}

.sg-technician-profile-header {
    display: flex;
    align-items: center;
    padding: 30px;
    border: 1px solid #e3e3e3;
    background: #fff;
    margin-bottom: 25px;
}

.sg-technician-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    font-size: 34px;
    font-weight: 600;
}

.sg-technician-profile-heading h1 {
    margin: 0 0 7px;
    font-size: 30px;
    font-weight: 600;
}

.sg-technician-profile-role {
    color: #777;
    font-size: 15px;
    margin-bottom: 10px;
}

.sg-technician-profile-verified {
    color: #168a36;
    font-size: 13px;
    font-weight: 600;
}

.sg-technician-profile-verified span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #18b94a;
    margin-right: 5px;
}

.sg-technician-profile-section {
    border: 1px solid #e3e3e3;
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.sg-technician-profile-section h2 {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
    font-weight: 600;
}

.sg-profile-row {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 14px;
}

.sg-profile-row strong {
    width: 220px;
    flex-shrink: 0;
}

.sg-profile-row span {
    color: #555;
}

.sg-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sg-profile-tags span {
    padding: 8px 12px;
    border: 1px solid #d7eadb;
    background: #f2f7f3;
    color: #25733a;
    font-size: 13px;
}

.sg-technician-profile-actions {
    text-align: center;
    margin-top: 30px;
}

.sg-technician-contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00d400;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.sg-technician-contact-btn:hover {
    opacity: .9;
}


@media (max-width: 767px) {

    .sg-technician-profile {
        padding: 25px 15px 40px;
    }

    .sg-technician-profile-header {
        padding: 20px;
    }

    .sg-technician-profile-avatar {
        width: 65px;
        height: 65px;
        font-size: 25px;
        margin-right: 15px;
    }

    .sg-technician-profile-heading h1 {
        font-size: 22px;
    }

    .sg-technician-profile-section {
        padding: 20px;
    }

    .sg-profile-row {
        display: block;
    }

    .sg-profile-row strong {
        display: block;
        width: auto;
        margin-bottom: 5px;
    }

}