/* 網盤鏈接隱藏器 - 瘦身版樣式 */

.pan-hider-wrapper {
    /* 改為行內塊元素，並添加邊距，使其可以並排 */
    display: inline-block;
    margin: 4px; /* 按鈕之間的間距 */
    padding: 0;
}

.pan-hider-button {
    /* 改為行內 flex 元素，使其緊湊包裹內容 */
    display: inline-flex;
    flex-direction: row; /* 水平排列 */
    align-items: center;
    justify-content: center;
    
    /* 大幅減小內邊距 */
    padding: 6px 14px;
    
    background-image: linear-gradient(135deg, #f0f3f6 0%, #d8e1ec 100%);
    border: 1px solid #c8d0da;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.pan-hider-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.pan-hider-button span {
    /* 減小主文字體，改變顏色 */
    font-size: 0.9rem;
    font-weight: 500;
    color: #0d6efd;
}