/**
 * Button Click Tracker - Frontend Styles
 */

/* 統計パネルのスタイル */
#bct-stats-panel {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.4;
}

#bct-stats-panel * {
    box-sizing: border-box;
}

/* 統計パネルのスクロールバー */
#bct-stats-content::-webkit-scrollbar {
    width: 6px;
}

#bct-stats-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#bct-stats-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#bct-stats-content::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 統計トグルボタンのホバー効果 */
#bct-stats-toggle:hover {
    background: #135e96 !important;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

#bct-toggle-panel:hover {
    background: #135e96 !important;
    transition: all 0.2s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #bct-stats-panel {
        right: 10px !important;
        max-width: 280px !important;
        font-size: 12px !important;
    }
    
    #bct-stats-toggle {
        right: 10px !important;
        font-size: 11px !important;
        padding: 6px 10px !important;
    }
}

@media (max-width: 480px) {
    #bct-stats-panel {
        right: 5px !important;
        left: 5px !important;
        max-width: none !important;
    }
    
    #bct-stats-toggle {
        right: 5px !important;
    }
}

/* WordPress管理バーとの調整 */
@media screen and (max-width: 782px) {
    #bct-stats-panel,
    #bct-stats-toggle {
        top: 46px !important;
    }
}

@media screen and (max-width: 600px) {
    #bct-stats-panel,
    #bct-stats-toggle {
        top: 0 !important;
    }
}

/* 追跡されたボタンの視覚的フィードバック（オプション） */
.bct-tracked {
    position: relative;
}

.bct-tracked::after {
    content: '🎯';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    opacity: 0;
    animation: bct-track-flash 0.5s ease-out;
}

@keyframes bct-track-flash {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* 統計パネルのアニメーション */
#bct-stats-panel {
    animation: bct-slide-in 0.3s ease-out;
}

@keyframes bct-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    #bct-stats-panel {
        background: #1e1e1e !important;
        border-color: #3c3c3c !important;
        color: #ffffff !important;
    }
    
    #bct-stats-panel div[style*="color: #1d2327"] {
        color: #ffffff !important;
    }
    
    #bct-stats-panel div[style*="color: #646970"] {
        color: #a7aaad !important;
    }
    
    #bct-stats-panel div[style*="background: #f6f7f7"] {
        background: #2c2c2c !important;
    }
}

