/* This prevents the browser from forcing dark mode on your app */
/* Override Bulma's default color CSS variables */
: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%;
}

/* Using standard Bulma colors for a clean, professional look */
.has-text-primary {
    color: hsl(217, 71%, 53%) !important; /* Bulma's default blue */
}

.button.is-primary {
    background-color: hsl(217, 71%, 53%); /* Bulma's default blue */
    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: #ebedef;
}

.hero.is-primary .title, .hero.is-primary .subtitle {
    color: #171717 !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: #2e7d32; /* 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;
}
