/* 우측 하단 글쓰기 버튼 (회원/관리자) - .fix 영역과 겹치지 않도록 right 여백 */
.float-write-btn {
    position: fixed !important;
    right: 90px !important;
    bottom: 24px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    z-index: 99999;
    transition: background 0.2s, transform 0.2s;
}
.float-write-btn:hover {
    background: #0056b3 !important;
    color: #fff !important;
    transform: translateY(-2px);
}
.float-write-btn .xi-pen {
    font-size: 18px;
}
@media (max-width: 768px) {
    .float-write-btn {
        right: 50px !important;
        bottom: 16px !important;
        padding: 12px 12px;
        font-size: 14px;
    }
    .float-write-btn-txt {
        display: none;
    }
}
