﻿:root {
    --main-bg-color: rgb(242, 241, 241);
    --readable-bg: rgb(250, 250, 250);
    --color-fg-default: black;
    --vq-accent-color-fg: white;
    --vq-accent-color-bg: purple;
    --vq-accent-color-bg-hover: rgb(111, 32, 173);
    /*--bs-body-font-family: "Mont bold", "Montserrat", "Calibre", "Helvetica", "Helvetica Neue", sans-serif;
    --bs-body-font-family: "AmericanSans Var", Arial, sans-serif;*/
    --header-height: 56px;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
/*Media selection for light / dark prefs*/
/*
@media (prefers-color-scheme: light)  {
    .container {
        --color-fg-default: black;
        --readable-bg: white;
    }
}
@media (prefers-color-scheme: dark) {
    .container.adaptive {
        --color-fg-default: lightblue;
        --readable-bg: black;
    }
}
*/
label {
    font-weight: bold;
}

.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;
}


body {
  margin-bottom: 60px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
   
main {
    background-color: var(--readable-bg, white);
    padding: 5px;
}

main > .container > :is(h1, h2, p) {
    text-align: center;
}
.container {
    padding: 2rem;
}

html, body {
    scroll-behavior: smooth;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(135deg, var(--vq-accent-color-bg), #1f2937);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section {
    padding: 100px 0;
}

.full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.full-bleed.in-view {
    opacity: 1;
    transform: translateY(0);
}

.table-striped > .row:nth-of-type(even) {
    background-color: rgba(0,0,0,.05);
}

.thead {
    background-color: lightgray;
    font-weight: bold;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.icon-hover {
    transition: font-variation-settings 0.25s;
    border-radius: 12px;
    color: black;
}

.icon-hover:hover {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    background-color: #d6d6d6;
}

button.navbar-toggler {
    color: rgba(0, 0, 0, 0.54);
}

/* take the down arrow off the ellipse dropdowns*/
.dropdown-toggle::after {
    content: none;
}

.code-output {
    width: 100%;
    height: 400px;
    font-family: courier new;
    font-size: 10pt;
    display: block;
    margin: 5px 2px 5px 2px;
}
/* This goofs up the tabs on Generate.cshtml
.navbar, .nav-item, .nav-link {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.navbar, .nav-item, .nav-link, .text-dark {
    color: var(--vq-accent-color-fg) !important;
}
*/
.card {
    margin: 5px;
    padding: 5px;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/*
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
*/
.card-title {
    font-size: calc(1.325rem + .9vw);
}
.card-subtitle{
    font-style: italic;
}
.five-star{
    text-decoration-line: none;
}

/* Begin ActionBar settings*/
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
#ActionBar {
    opacity: 0;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: right;
    text-wrap: nowrap;
    overflow: visible;
}

.listrow > [class*="col"] {
    position: relative;
}

.listrow:hover {
    background-color: #ebebeb;
}

.listrow:hover #ActionBar {
    opacity: 0.5;
    transition-delay: 250ms;
}
.hover-danger:hover {
    background-color: rgba(var(--bs-danger-rgb));
}
/* End ActionBar settings */

/* Do this once so we don't need 5 million @class = "text-danger" tags*/
.field-validation-error {
    color: rgba(var(--bs-danger-rgb));
    font-style: italic;
}

.add-row {
    /* Not final, but provide a visual distinction of the new rows in bulk edit views*/
    background-color: lightyellow;
}

/*Make Youtube video scalable*/
.video-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}
iframe.video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#gen-tabs{
    margin-top: 5pt;
}
/*
.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
    
.btn:hover {
    background-color: #45A049;
}*/
.btn-primary {
    background-color: var(--vq-accent-color-bg);
    border-color: var(--vq-accent-color-bg);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: var(--vq-accent-color-bg-hover);
    border-color: var(--vq-accent-color-bg-hover);
}

.banner {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(../Images/vq/Virtuquill_logo_200x50_clear.png) no-repeat;
    width: 200px; /* Width of new image */
    height: 50px; /* Height of new image */
    padding-left: 200px; /* Equal to width of new image */
    background-size: contain;
}

ul.no-dot {
    padding: 0px;
}
