#email-comment-section {
    margin: 40px auto 20px;
    padding: 20px 20px;
    background: transparent;
    border-radius: 12px;
    text-align: center;
}

.email-comment-notice {
    font-size: 13px;
    color: #e6a23c;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.email-comment-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent !important;
    color: #49b1f5 !important;
    border: 1.5px solid #49b1f5;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.email-comment-btn i {
    margin-right: 6px;
}

.email-comment-btn:hover {
    background-color: #49b1f5 !important;
    color: #fff !important;
    border-color: #49b1f5;
}

.email-comment-btn:active {
    transform: scale(0.97);
    border-width: 1.5px;
    padding: 8px 20px;
}

[data-theme='dark'] .email-comment-notice {
    color: #f5b042;
}

[data-theme='dark'] .email-comment-btn {
    border: 1.5px solid #a2d2fb;
    color: #a2d2fb !important;
}

[data-theme='dark'] .email-comment-btn:hover {
    background-color: #a2d2fb !important;
    color: #1e1e1e !important;
}