/* property_detail.html用CSS */

/* 物件画像カード・タブナビゲーションカードのホバー効果を無効化 */
.card-modern.no-hover:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* tab-modernスタイル（noise.htmlと同じ） */
.tab-modern {
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-modern:hover {
    background: rgba(0, 114, 188, 0.1);
    color: #0072BC;
}

.tab-modern.active {
    background: #0072BC;
    color: white;
    box-shadow: 0 4px 15px 0 rgba(0, 114, 188, 0.4);
}

/* タブのスクロールバーをカスタマイズ */
div[style*="overflow-x: auto"]::-webkit-scrollbar {
    height: 6px;
}

div[style*="overflow-x: auto"]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb {
    background: rgba(0, 114, 188, 0.3);
    border-radius: 10px;
}

div[style*="overflow-x: auto"]::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 114, 188, 0.5);
}

/* スクロールのスムーズな動作 */
div[style*="overflow-x: auto"] {
    scroll-behavior: smooth;
}

/* 騒音モニタリングカードのホバー効果 */
#noise-monitoring-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 166, 90, 0.2);
    border-color: rgba(3, 166, 90, 0.4) !important;
}

#noise-monitoring-card:active {
    transform: translateY(0);
}
