﻿:root {

}


html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--text-base);
    height: 100%;
    margin: 0;
    background-color: var(--bs-light);
    overflow-x: hidden;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDk5MCB4bWxucz0iaHR0cDovL3d3dy53Mi5vbm9kZC8yMDAwL3N2ZyI+CiAgICA8ZGVmcz4KICAgICAgICA8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KICAgICAgICAgICAgPHJlY3QgeD0iMjM1IiB5PSI1MSIgd2lkdGg9IjU2IiBoZWlnaHQ9IjQ5Ii8+CiAgICAgICAgPC9jbGlwUGF0aD4KICAgICAgICA8Zz4KICAgICAgICAgICAgPGcgY2xipcC1wYXR0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSIgZmlsbD0iI2ZmZTAyOSI+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMjYzLjUwNiA1MUMyNjQuNzE3IDUxIDI2NS44MTMgNTEuNDgzNyAyNjYuNjA2IDUyLjI2NTgKTjI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA9NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yMjcuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyMjcuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDg2IDY2LjA1ODMgMjYzLjU3NiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N0oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.custom-fixed-nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.hero {
    position: relative;
    height: calc(100vh - 800px); /* Adjust the height to be 300px shorter */
    min-height: 500px; /* Ensure a minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden; /* Ensure the image is cropped */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);*/
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    object-position: top; /* Keep the image at the top */
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a background overlay */
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content {
    /*padding: 1rem;*/
}

.no-responsive-text .card-body {
    font-size: 1em !important; /* Set a fixed font size */
}


.footer {
    background-color: var(--bs-dark);
    padding: 0.5rem;
    text-align: center;
    margin-top: auto;
}

/* Home.razor Grid */
.grid-item {
    padding: .25rem;
    font-size: 1.1rem;
    text-align: center;
}

.grid-item-1x1 {
    height: 100%;
}

.grid-item-2x1 {
    height: 100%;
}

/* 
   Override for BlazorBootstrap Toasts:
   The .toast-container class is used by BlazorBootstrap for toast notifications.
   The z-index was increased here to ensure toasts appear above the navigation bar and other overlays.
*/
.toast-container {
    z-index: 2200;
}

/* 
   Override for BlazorBootstrap Modals:
   The .modal class is used by BlazorBootstrap for modal dialogs.
   The z-index was increased here to ensure modals appear above toasts and other overlays.
*/
.modal {
    z-index: 2100; /* Ensure modals appear above toasts and other elements */
}


/* Toast Fadeint Fadein command fadeout */
/* Add fade-in and fade-out animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.toast.fade-in {
    animation: fadeIn 0.5s;
}

.toast.fade-out {
    animation: fadeOut 0.5s;
}



table {
    background-color: transparent !important;
}

thead, tbody, tr, td, th {
    background-color: transparent !important;
}

.artist-type {
    background-color: lightsteelblue !important;
    color: white;
}

.art-genre {
    background-color: #ffb3ba !important;
    color: white;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(127, 112, 155, 0.2); /* semi-transparent #7F709B purple */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* Status CSS*/
.status-pending {
    color: #007bff; /* Bootstrap blue */
    font-weight: 600;
}

.status-approved {
    color: #28a745; /* Bootstrap green */
    font-weight: 600;
}

.status-denied {
    color: #dc3545; /* Bootstrap red */
    font-weight: 600;
}
/*
.modal-content {
    background-color: var(--bs-light) !important;
}*/


.custom-bg {
    background-color: #f8f9fa !important; /* Use a light background color */
}


.smaller-font,
.smaller-font input,
.smaller-font select,
.smaller-font textarea,
.smaller-font button,
.smaller-font .form-control,
.smaller-font .form-select,
.smaller-font .form-check-input {
    font-size: 0.8em;
}

    .smaller-font input:focus,
    .smaller-font select:focus,
    .smaller-font textarea:focus,
    .smaller-font .form-control:focus,
    .smaller-font .form-select:focus {
        background-color: #e3f2fd; /* Light blue, use any color you prefer */
        outline: none;
    }

.btn-close.btn-close-xs {
    width: 0.75em;
    height: 0.75em;
    min-width: 0.75em;
    min-height: 0.75em;
}


.off-canvas-style {
    background-color: var(--bs-dark);
    padding: .5rem;
}

.pale-yellow-card-layout {
    background-color: #f8f0e3 !important;
}

.typewriter-cursor {
    display: inline-block;
    width: 1ch;
    animation: blink 1s steps(1) infinite;
}

.loading-typewriter {
    display: inline-block;
    text-align: left;
    letter-spacing: 0.02em;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}




/* Bootstrap Icon Styles */
.icon-active-green {
    color: #38B24F !important;
}

.icon-size-1-25 {
    font-size: 1.25em !important;
}

.icon-size-1-5 {
    font-size: 1.5em !important;
}

