/*
Theme Name: ApoLegal Blog
Theme URI: https://apolegal.in/
Author: Thinklar Consultany Services
Author URI: https://thinklar.com/
Description: Custom WordPress theme for ApoLegal Blog.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apolegal
*/

/* Custom Author Bio */
.custom-author-bio {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.custom-author-bio .author-img img {
    border-radius: 16px;
    object-fit: cover;
    width: 120px;
    height: 120px;
}
.custom-author-bio .author-details h4 {
    color: #0b1a4a;
    font-size: 22px;
}
.custom-author-bio .author-details .bio-label {
    color: #0b1a4a;
    font-size: 14px;
    font-weight: 500;
}

/* Custom Leave a Reply Form */
.custom-leave-reply {
    background-color: #f4f6f9;
    border-radius: 20px;
}
.custom-leave-reply h3 {
    color: #0b1a4a;
    font-size: 24px;
}
.custom-leave-reply .custom-input,
.custom-leave-reply .custom-textarea {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    padding: 15px 50px 15px 25px; /* space for icon on right */
    color: #495057;
}
.custom-leave-reply .custom-input:focus,
.custom-leave-reply .custom-textarea:focus {
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
    outline: none;
}
.custom-leave-reply .custom-textarea {
    border-radius: 20px;
    resize: vertical;
}
.custom-leave-reply .btn-submit-comment {
    background-color: #0d6efd;
    border: none;
    padding: 14px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
}
.custom-leave-reply .btn-submit-comment:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}
.custom-leave-reply ::placeholder {
    color: #adb5bd;
}
