/*
(c) Spacehubs Africa. All rights reserved.
Licensed under the Proprietary License found in the LICENSE file
in the root directory of this source tree.
*/

.country-tab-nav { display: flex; gap: 0.375rem; overflow-x: auto; white-space: nowrap; padding-bottom: 0.25rem; }
.country-tab-nav::-webkit-scrollbar { height: 4px; }
.country-tab-nav::-webkit-scrollbar-track { background: transparent; }
.country-tab-nav::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9999px; }
.country-tab-nav::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.country-tab-nav .tab-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem; font-weight: 500;
  color: #475569;
  border: 1px solid transparent;
  background: #f1f5f9;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.country-tab-nav .tab-btn:hover:not([disabled]) { background: #e2e8f0; color: #0f172a; }
.country-tab-nav .tab-btn[disabled] { opacity: 0.75; cursor: not-allowed; }
.country-tab-nav .tab-btn[data-tab="overview"].active    { background: #E0F5FB; color: #075985; border-color: #0EA5E9; font-weight: 600; }
.country-tab-nav .tab-btn[data-tab="growth"].active      { background: var(--color-sha-green-bg);  color: var(--color-sha-green-text);  border-color: var(--color-sha-green-border);  font-weight: 600; }
.country-tab-nav .tab-btn[data-tab="industry"].active    { background: var(--color-sha-gold-bg);   color: var(--color-sha-gold-text);   border-color: var(--color-sha-gold-border);   font-weight: 600; }
.country-tab-nav .tab-btn[data-tab="infrastructure"].active { background: var(--color-sha-teal-bg); color: var(--color-sha-teal-text); border-color: var(--color-sha-teal-border);    font-weight: 600; }
.country-tab-nav .tab-btn[data-tab="academics"].active   { background: var(--color-sha-purple-bg); color: var(--color-sha-purple-text); border-color: var(--color-sha-purple-border); font-weight: 600; }
