/* ✅ Answer Box Design */
.answer-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}
.answer-box:hover {
    transform: translateY(-2px);
}

/* ✅ Dark Mode for Answers */
.dark-mode .answer-box {
    background-color: #2b2b2b;
    border-left: 4px solid #00c853;
    color: white;
}

/* ✅ Answer Content Formatting */
.answer-content {
    border-left: 3px solid #ddd;
    padding-left: 15px;
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.5;
}
.dark-mode .answer-content {
    border-left: 3px solid #00e676;
}

/* ✅ Profile Image for Answer Authors */
.profile-img-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ✅ Default User Icon (if no profile image) */
.profile-icon-sm {
    font-size: 40px;
    color: #007bff;
}
.dark-mode .profile-icon-sm {
    color: #00e676;
}
