/*
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; max-width: 600px; margin: 0 auto; padding: 20px; background: #f7f9fa; color: #0f1419; }
    header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    h1 { font-size: 20px; margin: 0; }
 */
    .blg_body { 
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
        max-width: 600px; 
        margin: 0 auto; 
        padding: 20px; 
        background: #f7f9fa; 
        color: #0f1419; 
        margin-top:  5px;
    }
    .blg_header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .blg_h1 { font-size: 20px; margin: 0; }

    .auth-btn { background: none; border: none; color: #536471; cursor: pointer; font-size: 13px; text-decoration: underline; }
    
    .post-box { background: #fff; padding: 15px; border-radius: 12px; border: 1px solid #e1e8ed; margin-bottom: 20px; display: none; }
    textarea { width: 100%; height: 80px; border: none; resize: none; outline: none; font-size: 16px; box-sizing: border-box; }
    .post-actions { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eff3f4; padding-top: 10px; margin-top: 10px; }
    
    .btn-group { display: flex; gap: 8px; }
    .submit-btn { background: #1d9bf0; color: white; border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; }
    .draft-btn { background: #e1e8ed; color: #0f1419; border: none; padding: 8px 12px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 13px; }
    .clear-draft-btn { background: none; border: none; color: #f4212e; cursor: pointer; font-size: 12px; text-decoration: underline; padding: 0; }
    button:disabled { opacity: 0.5; }
    
    .draft-status { font-size: 12px; color: #1d9bf0; margin-bottom: 8px; display: none; }

    .timeline { display: flex; flex-direction: column; gap: 10px; }
    .tweet { background: #fff; padding: 15px; border-radius: 12px; border: 1px solid #e1e8ed; position: relative; }
    .tweet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
    .tweet .time { font-size: 12px; color: #536471; }
    .delete-btn { background: none; border: none; color: #f4212e; font-size: 12px; cursor: pointer; padding: 2px 6px; border-radius: 4px; }
    .delete-btn:hover { background: #ffeef0; }
    .tweet .text { white-space: pre-wrap; word-break: break-word; font-size: 15px; }
    .tweet .text a.text-link { color: #1d9bf0; text-decoration: underline; word-break: break-all; }
    
    .media-container { margin-top: 10px; }
    .thumbnail-link { display: block; overflow: hidden; border-radius: 8px; border: 1px solid #eff3f4; max-width: 100%; }
    .thumbnail-img { max-width: 100%; max-height: 350px; object-fit: cover; display: block; }
    .file-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; background: #f7f9fa; border: 1px solid #e1e8ed; border-radius: 8px; color: #1d9bf0; text-decoration: none; font-size: 14px; word-break: break-all; margin-top: 8px; }
    .file-link:hover { background: #eff3f4; }

