*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{

    background:linear-gradient(135deg,#001B44,#003A70,#0085CA);

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

}

.container{

    width:1200px;

    height:700px;

    background:white;

    border-radius:25px;

    overflow:hidden;

    display:flex;

    box-shadow:0px 25px 60px rgba(0,0,0,.40);

}

.left{

    flex:1;

    background:linear-gradient(135deg,#003A70,#0085CA);

    padding:60px;

    color:white;

}

.left h1{

    font-size:64px;

    margin-bottom:20px;

}

.left h2{

    font-size:36px;

    margin-bottom:30px;

}

.left p{

    font-size:20px;

    margin-bottom:40px;

    line-height:1.6;

}

.left ul{

    list-style:none;

}

.left li{

    margin-bottom:20px;

    font-size:20px;

}

.right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F8FAFC;

}

.loginBox{

    width:400px;

}

.loginBox h2{

    color:#003A70;

    margin-bottom:40px;

    text-align:center;

    font-size:36px;

}

input{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    border-radius:10px;

    background:#EDF2F7;

    font-size:18px;

}

button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:10px;

    background:#0085CA;

    color:white;

    font-size:20px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#003A70;

}

.dashboard-body{
    height:auto;
    min-height:100vh;
    display:block;
    background:#eef4fb;
    color:#0f172a;
}

.dashboard-shell{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:280px;
    background:linear-gradient(180deg,#001B44,#003A70);
    color:white;
    padding:35px 25px;
}

.sidebar h1{
    font-size:30px;
    margin-bottom:8px;
}

.sidebar p{
    opacity:.8;
    margin-bottom:35px;
}

.sidebar nav{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sidebar a{
    padding:14px 16px;
    border-radius:12px;
    color:white;
    opacity:.75;
}

.sidebar a.active,
.sidebar a:hover{
    background:rgba(255,255,255,.15);
    opacity:1;
}

.main{
    flex:1;
    padding:30px;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.topbar h2{
    font-size:32px;
    color:#003A70;
}

.topbar p{
    color:#64748b;
}

.topbar button{
    width:120px;
    padding:12px;
}

.status-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:25px;
}

.card,
.panel,
.activity{
    background:white;
    border-radius:18px;
    padding:24px;
    box-shadow:0 15px 35px rgba(15,23,42,.08);
}

.card h3{
    color:#64748b;
    margin-bottom:10px;
}

.card h2{
    color:#003A70;
    font-size:30px;
    margin-bottom:8px;
}

.card p{
    color:#64748b;
}

.card.green{
    background:linear-gradient(135deg,#003A70,#00a884);
    color:white;
}

.card.green h2,
.card.green h3,
.card.green p{
    color:white;
}

.card.green span{
    color:#3cff9b;
    font-size:28px;
}

.panel{
    margin-bottom:25px;
}

.panel-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.panel-header h3,
.bandwidth-panel h3,
.activity h3{
    color:#003A70;
    font-size:24px;
}

select{
    padding:12px 18px;
    border-radius:12px;
    border:1px solid #cbd5e1;
    font-size:16px;
}

.service-row{
    display:grid;
    grid-template-columns:1fr 130px 90px;
    align-items:center;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid #e2e8f0;
}

.service-row h4{
    color:#0f172a;
    font-size:18px;
}

.service-row p{
    color:#64748b;
    margin-top:5px;
}

.service-row strong{
    color:#003A70;
    font-size:20px;
}

.pill{
    background:#dcfce7;
    color:#166534;
    padding:8px 12px;
    border-radius:999px;
    text-align:center;
    font-weight:bold;
}

.speed-display{
    margin:25px 0;
    background:linear-gradient(135deg,#f8fafc,#e0f2fe);
    padding:25px;
    border-radius:18px;
    text-align:center;
}

.speed-display span{
    color:#64748b;
}

.speed-display h2{
    color:#003A70;
    font-size:44px;
}

#speedSlider{
    width:100%;
    margin:20px 0;
}

.speed-labels{
    position:relative;
    height:28px;
    color:#64748b;
    margin-bottom:20px;
}

.speed-labels span{
    position:absolute;
    transform:translateX(-50%);
}

.speed-labels span:first-child{
    transform:translateX(0);
}

.speed-labels span:last-child{
    transform:translateX(-100%);
}

.apply-btn{
    background:linear-gradient(135deg,#0085CA,#003A70);
}

.activity p{
    margin-top:12px;
    color:#334155;
    font-size:16px;
}

.demo-footer {
    margin-top: 20px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #5f6f86;
    background: #eef5fb;
    border-radius: 10px;
    border: 1px solid #d8e4f0;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.readonly-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: #e8f7ef;
    color: #007a3d;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #bfe8d0;
}

.noc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.noc-item {
    background: #f7f9fb;
    border: 1px solid #d9e3ec;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    color: #003b75;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 15px;
}

.summary-grid div {
    background: #f7f9fb;
    border: 1px solid #d9e3ec;
    border-radius: 10px;
    padding: 16px;
}

.summary-grid strong {
    display: block;
    color: #5f6f86;
    font-size: 14px;
    margin-bottom: 6px;
}

.summary-grid span {
    display: block;
    color: #003b75;
    font-size: 22px;
    font-weight: 700;
}

.live-uni-row {
    cursor: pointer;
    transition: 0.2s ease;
}

.live-uni-row:hover {
    background: #eef6ff;
    border-color: #8bbce8;
}

.selected-uni {
    background: #e8f3ff !important;
    border: 2px solid #1b75bc !important;
}

.review-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f1f5f9;
    padding:30px;
}

.review-card{
    width:100%;
    max-width:760px;
    background:#ffffff;
    border-radius:22px;
    padding:36px;
    box-shadow:0 18px 45px rgba(15,23,42,0.16);
}

.review-card h1{
    color:#003A70;
    margin-bottom:6px;
}

.review-card h2{
    color:#0f172a;
    margin-bottom:26px;
}

.review-row{
    display:flex;
    justify-content:space-between;
    gap:24px;
    padding:16px 0;
    border-bottom:1px solid #e2e8f0;
}

.review-row strong{
    color:#475569;
}

.review-row span{
    color:#0f172a;
    text-align:right;
    font-weight:600;
}

.safe-note{
    margin-top:24px;
    padding:16px;
    border-radius:14px;
    background:#ecfdf5;
    color:#166534;
    font-weight:700;
}

.review-actions{
    display:flex;
    justify-content:flex-end;
    gap:14px;
    margin-top:28px;
}

.review-actions button{
    border:0;
    border-radius:12px;
    padding:12px 18px;
    font-weight:700;
    cursor:pointer;
}

#submitCapacityRequest{
    background:#003A70;
    color:white;
}
/* Admin page layout fix */
html,
body {
    min-height: 100%;
    height: auto;
    margin: 0;
    overflow-y: auto;
}

.dashboard-shell {
    min-height: 100vh;
    height: auto;
    align-items: stretch;
}

.main {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    padding-top: 24px;
}

.sidebar {
    min-height: 100vh;
}

.topbar {
    margin-top: 0;
}

.button-link {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.button-link:hover {
    background: #1d4ed8;
}

/* Admin Dashboard full layout match */
.dashboard-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    padding: 36px 26px;
}

.main {
    width: 100%;
    max-width: none;
    padding: 32px 40px;
    box-sizing: border-box;
}

.topbar {
    width: 100%;
    margin-bottom: 24px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 18px;
    width: 100%;
    margin-bottom: 24px;
}

.panel {
    width: 100%;
    box-sizing: border-box;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.review-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        width: auto;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

.search-box {
    width: 100%;
    padding: 14px;
    margin: 12px 0 20px 0;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    box-sizing: border-box;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.customer-card {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.customer-card h4 {
    margin: 0 0 10px 0;
    color: #003b73;
}

.customer-card p {
    margin: 6px 0;
}

.selected-card {
    border: 3px solid #0284c7;
    background: #eff6ff;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.card-actions button,
.remove-service-button {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.select-customer-button {
    background: #2563eb;
    color: white;
}

.danger-button {
    background: #dc2626;
    color: white;
}

.assigned-service-card {
    border-left: 5px solid #16a34a;
}

.section-subtitle {
    margin-top: 28px;
    margin-bottom: 12px;
    color: #003b73;
}

.live-service-row {
    cursor: pointer;
}

.live-service-row:hover,
.customer-card:hover {
    transform: translateY(-2px);
    transition: 0.2s ease;
}

/* Clean CCI Connect Login */
.login-page {
    margin: 0;
    min-height: 100vh;
    background: #0f172a;
}

.login-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
}

.login-hero {
    padding: 80px;
    color: white;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(14, 116, 144, 0.82)),
        radial-gradient(circle at top left, #38bdf8, transparent 35%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #38bdf8;
    color: #082f49;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 28px;
}

.login-hero h1 {
    font-size: 56px;
    margin: 0;
}

.login-hero h2 {
    font-size: 28px;
    margin: 12px 0 18px;
    color: #bae6fd;
}

.login-hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: #e0f2fe;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
    max-width: 650px;
}

.hero-stats div {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 18px;
}

.hero-stats strong {
    display: block;
    font-size: 26px;
}

.hero-stats span {
    color: #cbd5e1;
}

.login-panel {
    background: #ffffff;
    padding: 70px 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-panel h2 {
    color: #0f172a;
    font-size: 34px;
    margin: 0;
}

.login-panel p {
    color: #64748b;
}

.login-panel label {
    margin-top: 18px;
    margin-bottom: 7px;
    font-weight: 800;
    color: #0f172a;
}

.login-panel input {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    box-sizing: border-box;
    font-size: 15px;
}

.login-panel input:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.login-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0 10px;
}

.login-tabs button {
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #e2e8f0;
    color: #0f172a;
    font-weight: 900;
    cursor: pointer;
}

.login-tabs .active-tab {
    background: #0284c7;
    color: white;
}

#loginButton {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: #0284c7;
    color: white;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

#loginButton:hover {
    background: #0369a1;
}

#loginMessage {
    color: #dc2626;
    font-weight: 800;
    min-height: 22px;
}

.demo-help {
    margin-top: 22px;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 14px;
    color: #334155;
    font-size: 14px;
}

@media (max-width: 900px) {
    .login-layout {
        grid-template-columns: 1fr;
    }

    .login-hero {
        padding: 42px;
    }

    .login-hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .login-panel {
        padding: 42px;
    }
}

/* Mobile autosize for Customer Portal */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .dashboard-shell {
        display: block;
        width: 100%;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        padding: 22px;
        box-sizing: border-box;
    }

    .sidebar nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sidebar nav a {
        text-align: center;
        padding: 10px;
        border-radius: 10px;
    }

    .main {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .topbar {
        padding: 20px;
        box-sizing: border-box;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .panel {
        padding: 20px;
    }

    .button-link,
    button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .review-actions {
        flex-direction: column;
    }

    h1, h2, h3, h4, p {
        overflow-wrap: anywhere;
    }
}

/* Mobile autosize for Customer Portal */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .dashboard-shell {
        display: block;
        width: 100%;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        padding: 22px;
        box-sizing: border-box;
    }

    .sidebar nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sidebar nav a {
        text-align: center;
        padding: 10px;
        border-radius: 10px;
    }

    .main {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .topbar {
        padding: 20px;
        box-sizing: border-box;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .panel {
        padding: 20px;
    }

    .button-link,
    button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .review-actions {
        flex-direction: column;
    }

    h1, h2, h3, h4, p {
        overflow-wrap: anywhere;
    }
}

.bandwidth-display {
    margin-top: 24px;
    color: #003b73;
    text-align: center;
}

#selectedBandwidth {
    color: #0284c7;
    font-size: 34px;
}

.bandwidth-scale {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    justify-items: center;
    margin-top: 16px;
    font-size: 11px;
    text-align: center;
    color: #334155;
}

#bandwidthSlider {
    width: 100%;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .bandwidth-scale {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        font-size: 12px;
    }
}

.bandwidth-display {
    margin-top: 24px;
    color: #003b73;
    text-align: center;
}

#selectedBandwidth {
    color: #0284c7;
    font-size: 34px;
}

.bandwidth-scale {
    display: grid;
    grid-template-columns: repeat(23, 1fr);
    gap: 4px;
    margin-top: 16px;
    font-size: 11px;
    text-align: center;
    color: #334155;
}

#bandwidthSlider {
    width: 100%;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .bandwidth-scale {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        font-size: 12px;
    }
}

.readonly-notice {
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
}

button:disabled,
input:disabled,
select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.customer-create-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: end;
}

.customer-create-grid div,
.password-reset-grid div {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 14px;
}

.customer-create-grid input,
.password-reset-grid input {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 15px;
}

.password-rule {
    margin-top: 14px;
    padding: 12px;
    background: #eff6ff;
    border-left: 5px solid #0284c7;
    border-radius: 10px;
    font-weight: 700;
    color: #003b73;
}

.password-reset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.password-reset-grid button {
    width: 100%;
    margin-top: 12px;
}

@media (max-width: 1300px) {
    .customer-create-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .customer-create-grid,
    .password-reset-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin dashboard card text visibility fix */
.status-grid .card h3 {
    color: #334155;
}

.status-grid .card h2 {
    color: #003A70;
}

.status-grid .card p {
    color: #475569;
}

.status-grid .card.green h2,
.status-grid .card.green h3,
.status-grid .card.green p {
    color: #ffffff;
}

/* FORCE Admin Dashboard card text colors */
.status-grid .card h2{
    color:#0f172a !important;
}

.status-grid .card h3{
    color:#1e3a8a !important;
}

.status-grid .card p{
    color:#334155 !important;
    opacity:1 !important;
}

.status-grid .card *{
    opacity:1 !important;
}


/* FORCE Admin Dashboard summary cards text visibility */
.summary-grid .panel strong {
    color: #1e3a8a !important;
    opacity: 1 !important;
}

.summary-grid .panel h2 {
    color: #0f172a !important;
    opacity: 1 !important;
}

.summary-grid .panel p {
    color: #334155 !important;
    opacity: 1 !important;
}

.summary-grid .panel * {
    opacity: 1 !important;
}

/* Admin Dashboard Header */
.page-header h1{
    color:#ffffff !important;
}

.page-header p{
    color:#cbd5e1 !important;
    font-size:20px;
    opacity:1 !important;
}

/* Admin page title fix */
.page-header h2{
    color:#ffffff !important;
    font-size:48px !important;
    font-weight:700 !important;
}

.page-header p{
    color:#dbeafe !important;
    font-size:28px !important;
    opacity:1 !important;
}

/* Admin topbar title fix */
.topbar h2{
    color:#ffffff !important;
    font-size:48px !important;
    font-weight:700 !important;
}

.topbar p{
    color:#dbeafe !important;
    font-size:24px !important;
    opacity:1 !important;
}


/* Sidebar clickability fix */
.dashboard-shell {
    position: relative;
}

.sidebar {
    position: relative;
    z-index: 50;
    flex-shrink: 0;
}

.sidebar nav,
.sidebar nav a {
    position: relative;
    z-index: 60;
    pointer-events: auto;
}

.main {
    position: relative;
    z-index: 1;
}

/* Admin Customer Management customer card text fix */
.customer-card h4 {
    color: #003A70 !important;
}

.customer-card p,
.customer-card span,
.customer-card div {
    color: #334155 !important;
    opacity: 1 !important;
}

.customer-card strong {
    color: #0f172a !important;
}

.customer-card button {
    color: #ffffff !important;
}

#bandwidthSlider {
    width: 100%;
    height: 36px;
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 5;
}

#bandwidthSlider::-webkit-slider-thumb {
    cursor: pointer;
}

#bandwidthSlider::-moz-range-thumb {
    cursor: pointer;
}

.bandwidth-scale {
    pointer-events: none;
}

.bandwidth-scale {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
}

.bandwidth-scale span {
    flex: 1;
    text-align: center;
}

.bandwidth-scale span:first-child {
    text-align: left;
}

.bandwidth-scale span:last-child {
    text-align: right;
}
/* Customer Management Admin Workspace */
.admin-customer-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: start;
}

.customer-navigator {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.customer-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.customer-list-compact .customer-card {
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #dbeafe;
}

.customer-list-compact .customer-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.customer-list-compact .customer-card p {
    margin: 3px 0;
    font-size: 12px;
}

.customer-list-compact .card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.customer-workspace {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 150px auto;
    gap: 10px;
    align-items: center;
}

.mini-create-box {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #dbeafe;
}

.mini-create-box h3 {
    margin-top: 0;
}

.mini-create-box label {
    display: block;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #003b73;
}

.mini-create-box input {
    width: 100%;
}

.mini-create-box button {
    width: 100%;
    margin-top: 14px;
}

@media (max-width: 1100px) {
    .admin-customer-layout {
        grid-template-columns: 1fr;
    }

    .customer-navigator {
        position: static;
        max-height: none;
    }

    .workspace-grid {
        grid-template-columns: 1fr;
    }

    .compact-form {
        grid-template-columns: 1fr;
    }
}

/* Customer Navigator Button Fix */
.customer-list-compact .card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.customer-list-compact .card-actions button,
.service-row .card-actions button {
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
}

.customer-list-compact .danger-button {
    background: #dc2626;
}

.service-row .card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.service-row .card-actions button {
    flex: 1 1 140px;
}

/* Tight Customer Admin Layout Fix */
.admin-customer-layout {
    gap: 12px !important;
}

.customer-workspace {
    gap: 12px !important;
}

.workspace-grid {
    gap: 12px !important;
}

.customer-navigator.panel,
.customer-workspace .panel {
    border-radius: 12px !important;
    margin: 0 !important;
}

.customer-list-compact .card-actions button,
.service-row button,
.card-actions button,
.review-actions button,
#assignServiceButton,
#createCustomerButton,
#createCustomerUserButton {
    min-height: 30px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
}

.customer-list-compact .card-actions {
    grid-template-columns: 1fr 1fr !important;
}

.compact-form {
    grid-template-columns: 1fr 1fr 110px 90px !important;
    gap: 8px !important;
}

.compact-form input,
.compact-form select {
    height: 34px !important;
    font-size: 12px !important;
}

.summary-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.panel {
    padding: 16px !important;
}

.customer-navigator {
    max-height: none !important;
}

.portal-logo{
    width:100px;
    height:auto;
    margin-bottom:10px;
}

.hero-header{
    display:flex;
    align-items:center;
    gap:20px;
}

.hero-header h1{
    margin:0;
    font-size:42px;
    color:white;
}

.hero-header h2{
    margin:5px 0 0;
    font-size:24px;
    color:#cfe8ff;
}


.portal-logo{
    width:110px;
    height:auto;
}

.hero-header h1{
    margin:0;
    color:white;
    font-size:52px;
    font-weight:700;
}

.hero-header h2{
    margin:4px 0 0;
    color:#CFE8FF;
    font-size:24px;
    font-weight:600;
}

.text-only-brand{
    display:block;
    margin-bottom:18px;
}

.text-only-brand h1{
    font-size:56px;
    line-height:1;
    color:#ffffff;
    margin:0 0 8px 0;
    letter-spacing:-1px;
}

.text-only-brand h2{
    font-size:26px;
    color:#cfe8ff;
    margin:0;
    font-weight:700;
}

