.share-container { padding: 40px 20px; max-width: 800px; }

.post-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.post-box textarea {
    width: 100%;
    height: 120px;
    margin-top: 15px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    resize: none;
    font-size: 1rem;
    outline: none;
}

.post-box textarea:focus { border-color: #16a34a; }

.btn-submit {
    margin-top: 15px;
    background: #16a34a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: #14532d; }

.post-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.post-time {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

.post-content { font-size: 1.1rem; color: #334155; line-height: 1.6; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }