/*
Theme Name: Divi Secure Child
Theme URI: https://www.example.com/divi-secure-child/
Description: A secure and performance-optimized child theme for Divi
Author: Marga Bagus
Author URI: https://margabagus.com
Template: Divi
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: divi-secure-child
*/

/* Basic styling for the child theme */
.lazy-image {
    opacity: 0.3;
    transition: opacity 0.3s;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Additional security notifications */
.security-notification {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #f5c6cb;
}

/* Style for the custom login page */
.default-login-container {
    padding: 50px 0;
}

.login-page-title {
    text-align: center;
    margin-bottom: 30px;
}

.login-page-logo {
    text-align: center;
    margin-bottom: 30px;
}

/* Adding styling for captcha elements */
.captcha-field {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Atur ukuran avatar pada komentar */
.comment .avatar,
.comment-list .avatar,
.commentlist .avatar {
    max-width: 50px !important; /* Anda bisa menyesuaikan ukuran ini */
    height: auto !important;
    width: 50px !important;
}

/* Tambahkan padding agar tampilan lebih rapi */
.comment-body {
    padding-left: 65px !important;
}