﻿/* =================================
   CORPORATE BLUE HOSPITAL THEME
   ================================= */



:root {
    --primary: #0EA5E9; /* Light Blue */
    --primary-light: #38BDF8; /* Sky Blue */
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --text: #1F2937;
    --border: #E5E7EB;
}

/* Base */
body {
    background: var(--bg);
    color: var(--text);
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 13px;
}

/* Top Bar */
.topbar.sticky {
    background: var(--primary);
    padding: 10px 15px;
}

#lcomp_name a {
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.navbar-nav > li > a {
    color: #334155 !important;
    font-weight: 600;
    padding: 13px 14px;
}

    .navbar-nav > li > a:hover {
        background: #EEF2FF !important;
        color: var(--primary) !important;
    }

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

    .dropdown-menu li a:hover {
        background: #EEF2FF;
    }

/* Main content */
#ContentPlaceHolder1 {
    max-width: 1300px;
    margin: auto;
    padding: 15px;
}

/* Cards / Panels */
.panel, .well, .card, .box, .table {
    background: var(--card);
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

    /* Tables */
    .table th {
        background: #F1F5F9;
        font-weight: 600;
    }

/* Buttons */
.btn {
    border-radius: 6px !important;
    font-weight: 600;
}

.btn-primary, .btn-info {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

    .btn-primary:hover, .btn-info:hover {
        background: var(--primary-light) !important;
    }

.btn-success {
    background: var(--success) !important;
}

/* Inputs */
.form-control {
    border-radius: 6px;
}

/* Footer */
.page-footer {
    background: #0F172A;
    color: #E5E7EB;
    padding: 8px;
    font-size: 12px;
}

/* No horizontal scroll */
body {
    overflow-x: hidden;
}

#ContentPlaceHolder1 .row {
    margin-left: 0;
    margin-right: 0;
}


/* ===============================
   FULL PREMIUM PALETTE TILES
   =============================== */

.palette-row {
    margin-bottom: 20px;
    margin-top:20px;
}

/* Tile Base */
.palette-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    border-radius: 16px;
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 20px rgba(0,0,0,.25);
    transition: .3s ease;
    overflow: hidden;
}

    /* Shine */
    .palette-tile::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -30%;
        width: 160%;
        height: 80%;
        background: rgba(255,255,255,.18);
        transform: rotate(-10deg);
    }

    /* Hover */
    .palette-tile:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 14px 30px rgba(0,0,0,.35);
    }

/* Icon Circle */
.tile-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 8px;
}

/* Text */
.tile-text {
    font-size: 15px;
    font-weight: 600;
}

/* Count Badge */
.tile-count {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,.35);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Gradients */
.blue {
    background: linear-gradient(135deg,#2563EB,#1E3A8A);
}

.sky {
    background: linear-gradient(135deg,#0EA5E9,#0369A1);
}

.green {
    background: linear-gradient(135deg,#22C55E,#15803D);
}

.purple {
    background: linear-gradient(135deg,#7C3AED,#4C1D95);
}

.teal {
    background: linear-gradient(135deg,#14B8A6,#0F766E);
}

.orange {
    background: linear-gradient(135deg,#F59E0B,#B45309);
}

.red {
    background: linear-gradient(135deg,#DC2626,#991B1B);
}

.purple {
    background: linear-gradient(135deg,#7C3AED,#4C1D95);
}

.teal {
    background: linear-gradient(135deg,#14B8A6,#0F766E);
}

.orange {
    background: linear-gradient(135deg,#F59E0B,#B45309);
}