:root {
    --primary-color: 210 100% 56%;
    --success-color: 134 61% 41%;
    --warning-color: 45 100% 51%;
    --danger-color: 354 70% 54%;
    --demo-gradient: linear-gradient(135deg, #7aa1b9 0%, #4a7a9a 100%);
    --dashboard-bg: #6187a0;
    --bs-body-bg: var(--dashboard-bg);
    --bs-body-color: #1e293b;
    --bs-secondary-bg: rgba(233, 238, 243, 0.8);
    --bs-border-color: rgba(209, 217, 224, 0.5);
}

body.light-theme {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--dashboard-bg) !important;

    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #1e293b;
    position: relative;
    overflow-x: hidden;
}

/* Custom Pattern Background Elements */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;


}

.bg-shape {
    position: absolute;
    pointer-events: none;
}

/* Dotted Grid 3x3 */
.shape-dots {
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 2.5px, transparent 2.5px);
    background-size: 20px 20px;
}

.dots-top-mid {
    top: 12%;
    left: 52%;
    opacity: 0.25;
}

.dots-mid-left {
    top: 52%;
    left: 2%;
    opacity: 0.2;
}

/* Rounded Pill Shapes */
.shape-pill {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 100px;
    transform: rotate(-45deg);
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
}

/* Clusters */
.pill-tr-1 {
    width: 420px;
    height: 110px;
    top: -60px;
    right: 8%;
    opacity: 0.3;
}

.pill-tr-2 {
    width: 330px;
    height: 85px;
    top: 120px;
    right: 0;
    opacity: 0.2;
}

.pill-tr-3 {
    width: 180px;
    height: 50px;
    top: 210px;
    right: -40px;
    opacity: 0.15;
}

.pill-bl-1 {
    width: 380px;
    height: 100px;
    bottom: 60px;
    left: 2%;
    opacity: 0.55;
}

.pill-bl-2 {
    width: 280px;
    height: 75px;
    bottom: -10px;
    left: 15%;
    opacity: 0.45;
}

.pill-bl-3 {
    width: 220px;
    height: 60px;
    bottom: -40px;
    left: 30%;
    opacity: 0.3;
}

.pill-ml {
    width: 250px;
    height: 65px;
    top: 35%;
    left: -60px;
    opacity: 0.2;
}

.pill-mr {
    width: 450px;
    height: 120px;
    top: 250px;
    right: -120px;
    opacity: 0.2;
    transform: rotate(-45deg);
}

/* Striped Sections */
.shape-stripes {
    background: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.25) 2px,
            transparent 2px,
            transparent 10px);
}

.stripes-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.stripes-tl {
    top: -70px;
    left: -60px;
    opacity: 0.25;
}

.stripes-br {
    bottom: -80px;
    right: -30px;
    opacity: 0.25;
}

.stripes-ml {
    top: 40%;
    left: -100px;
    width: 180px;
    height: 180px;
    opacity: 0.2;
}

.stripes-rect {
    width: 150px;
    height: 65px;
    transform: rotate(-45deg);
}

.stripes-top-r {
    top: 3%;
    right: 28%;
    opacity: 0.35;
}

.stripes-bot-mid {
    bottom: -25px;
    left: 47%;
    opacity: 0.25;
}