/* Author Share Button Styles */
.author-actions {
    margin: 15px 0;
}

.share-author-btn {
    background: white;
    color: #8576FF;
    border: 2px solid #8576FF;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.share-author-btn:hover {
    background: linear-gradient(135deg, #8576FF, #6a5ef5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(133, 118, 255, 0.3);
}

/* Ensure the share panel works correctly */
.share-panel {
    z-index: 9999;
}

/* Adjust social links to accommodate share button */
.social-links {
    margin-top: 10px;
}

.author-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.author-header {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
@media (max-width: 450px) {
    .author-header {
        flex-direction: column;
    }
}

#profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #ddd;
}

.author-details img {
    width: 20px;
    height: auto;
}

.author-details h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: black;
}

.author-details .social-links a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin-right: 5px;
}

.author-details .social-links a:hover {
    color: #007bff;
}

.author-description {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.author-description p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}