/* Cloud Control Tower — Stylesheet
   by Brinton Kay Technology Solutions

   (c) 2026 Brinton Kay Technology Solutions. All rights reserved.
   Cloud Control Tower is proprietary software of Brinton Kay Technology
   Solutions.

   Extracted from the inline <style> block previously in templates/base.html
   and retargeted to the Brinton Kay Brand & Style Guide v1.0, matching the
   token structure used in InfraScout's app/static/css/main.css. */

:root {
    --bkt-blue: #426CB4;       /* Brinton Blue */
    --bkt-blue-dim: #345896;
    --bkt-navy: #192944;       /* Deep Navy */
    --bkt-amber: #D97F1F;      /* Signal Amber */
    --bkt-paper: #F7F9FC;      /* Cloud Paper */
    --bkt-line: #DCE2ED;       /* Line Gray */
    --bkt-slate: #5B6472;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bkt-paper);
}

h1, h2, h3, h4, h5, h6,
.sidebar-brand h5,
.navbar-brand {
    font-family: 'IBM Plex Sans', sans-serif;
}

.sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bkt-navy) 0%, var(--bkt-blue-dim) 100%);
}

.sidebar-brand-logo {
    height: 30px;
    width: auto;
    margin-bottom: 10px;
}

.sidebar-vendor {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .03em;
    color: #9FB4DC;
    margin-top: 2px;
}

.sidebar-version {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: #7C8FB8;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin: 0.125rem 0;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white !important;
}

.nav-link.active {
    background-color: var(--bkt-amber);
    color: white !important;
}

.cloud-card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cloud-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: var(--bkt-blue);
    border-color: var(--bkt-blue);
}

.btn-primary:hover {
    background-color: var(--bkt-blue-dim);
    border-color: var(--bkt-blue-dim);
}

.bg-primary {
    background-color: var(--bkt-blue) !important;
}

.text-primary {
    color: var(--bkt-blue) !important;
}

.navbar-brand-logo {
    height: 26px;
    width: auto;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.app-footer {
    margin-top: 48px;
    padding: 16px 0 24px;
    border-top: 1px solid var(--bkt-line);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--bkt-slate);
    text-align: center;
}

.auth-logo {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
}

.auth-copyright {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--bkt-slate);
    text-align: center;
    margin-top: 12px;
}
