/* This prevents the browser from forcing dark mode on your app */
/* Override Bulma's default color CSS variables */
/* OptinModel blue brand color: #0542fc */
:root {
    /* color-scheme: light; */
    /*--bulma-control-radius:var(--bulma-radius);
    --bulma-control-radius-small:var(--bulma-radius-small);*/
    --bulma-hero-background-color: transparent;
    --bulma-body-background-color: #f1f3f4;
    --bulma-background: #f1f3f4;
    --bulma-hero-h: 210;
    --bulma-hero-s: 2%;
    --bulma-hero-background-l: 96%;
    --bulma-hero-color-l: 17%;
    --bulma-primary-brand-color: #0542fc;
    --bulma-box-background-color: #fff;
    --bulma-scheme-s: #fff;
    --bulma-scheme-main-l: #fff;
    --bulma-card-header-color: #4a4a4a;
    --bulma-text-bold: #4a4a4a;
    --bulma-text-s: #4a4a4a;
    --bulma-text-l: #4a4a4a;
    --bulma-title-color: #0542fc;
}

html,
body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

/* Using standard Bulma colors for a clean, professional look */
.has-text-primary {
    color: var(--bulma-primary-brand-color) !important;
}

.button.is-primary {
    background-color: var(--bulma-primary-brand-color);
    border-color: transparent;
    color: #fff !important; /* White text for readability */
}

.button.is-primary:hover {
    background-color: hsl(217, 71%, 48%); /* A slightly darker blue for hover */
    border-color: transparent;
    color: #fff !important;
}

.hero.is-primary {
    border-radius: 10px;
    background-color: #fff;
}

.hero.is-primary .title, .hero.is-primary .subtitle {
    color: #0542fc !important;
}
.has-brand-text-color-primary {
    color: var(--bulma-primary-brand-color) !important;
}

.has-background-primary-light {
    background-color: #fff !important;
}

/* A little extra spacing for the main content */
.main-content {
    min-height: calc(100vh - 10rem); /* Ensures footer is pushed down on short pages */
}

/* Your brand color for headings */
.title, .subtitle, h1, h2, h3, h4, h5, h6 {
    color: #0542fc; /* Darker Green for better contrast on light backgrounds */
}

/* Custom class for the brand logo background */
.has-background-brand {
    background-color: #2e7d32 !important; /* Darker Green */
}

/* Ensure good contrast for text on the brand background */
.has-background-brand, .has-background-brand a {
    color: #fff !important; /* White text for readability on dark green */
}

/* A little extra spacing for the main content */
.main-content {
    min-height: calc(100vh - 10rem); /* Ensures footer is pushed down on short pages */
}

.navbar-item > .title.is-logo {
    margin-bottom: 0;
}

.navbar.has-shadow {
    box-shadow: 0 2px 0 0 #f5f5f5;
}

.code {
    background-color: #e0dfe3;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.title.is-6 {
    color: #4a4a4a;
}

.dropdown-trigger > button, .dropdown-trigger i {
    background-color: #fff;
    border-color: var(--bulma-primary-brand-color);
    color: var(--bulma-primary-brand-color);
}

.dropdown-content {
    background-color: #fff;
    box-shadow: darkgray 1px 1px 1px;
}

/* ── Modal fixes ──────────────────────────────────────────────────────────── */
.modal-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.modal-card-head,
.modal-card-foot {
    background-color: #fff;
}

.modal-card-foot {
    gap: 0.75rem;
}


