
#heading{
    margin-left: 60px;
}

.blog-form{
    border-color: solid green;
    margin-left: 60px;
    padding-top: 10px;

}
input{
    padding: 6px;
    margin-top: 10px;
}
#post-subject{
    border:solid green;
    width: 710px;
    padding: 4px; 
    margin-bottom: 10px;
}
textarea{
    margin-top: 10px;
}
#post-contents{
    width: 720px;
    height: 450px;
    border: solid green;
    
}
#post{
    border: 6px double green thick;
    width: 100px;
    text-decoration: solid;
    text-align: center;
    font-weight: bold;
}
#post:hover{
    color: lightgreen;
}
strong{
    color: green;
    font-size: 20px;
}

/* Social Share Buttons */
.social-share-section {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.social-share-section h3 {
    color: #2d7a3e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #145dbf;
}

.share-twitter {
    background: #000000;
}

.share-twitter:hover {
    background: #333333;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #084d92;
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #1da851;
}

.share-email {
    background: #ea4335;
}

.share-email:hover {
    background: #c5221f;
}

.share-copy {
    background: #666;
}

.share-copy:hover {
    background: #444;
}

.share-copy.copied {
    background: #2d7a3e;
}

@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}
