﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: inherit;
    margin-bottom: 60px;
    --spacing: .25rem;
    --breakpoint-sm: 40rem;
    --breakpoint-md: 48rem;
    --breakpoint-lg: 64rem;
    --breakpoint-xl: 80rem;
    --breakpoint-2xl: 96rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1/.75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25/.875);
    --text-base: 1rem;
    --text-base--line-height: 1.5;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75/1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75/1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2/1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: 1.2;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5/2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --text-8xl: 6rem;
    --text-8xl--line-height: 1;
    --text-9xl: 8rem;
    --text-9xl--line-height: 1;
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    --tracking-tighter: -.05em;
    --tracking-tight: -.025em;
    --tracking-normal: 0em;
    --tracking-wide: .025em;
    --tracking-wider: .05em;
    --tracking-widest: .1em;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    --radius-xs: .125rem;
    --radius-sm: .25rem;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-4xl: 2rem;
    --shadow-2xs: 0 1px #0000000d;
    --shadow-xs: 0 1px 2px 0 #0000000d;
    --shadow-sm: 0 1px 3px 0 #0000001a,0 1px 2px -1px #0000001a;
    --shadow-md: 0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
    --shadow-xl: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;
    --shadow-2xl: 0 25px 50px -12px #00000040;
    --inset-shadow-2xs: inset 0 1px #0000000d;
    --inset-shadow-xs: inset 0 1px 1px #0000000d;
    --inset-shadow-sm: inset 0 2px 4px #0000000d;
    --drop-shadow-xs: 0 1px 1px #0000000d;
    --drop-shadow-sm: 0 1px 2px #00000026;
    --drop-shadow-md: 0 3px 3px #0000001f;
    --drop-shadow-lg: 0 4px 4px #00000026;
    --drop-shadow-xl: 0 9px 7px #0000001a;
    --drop-shadow-2xl: 0 25px 25px #00000026;
    --ease-in: cubic-bezier(.4,0,1,1);
    --ease-out: cubic-bezier(0,0,.2,1);
    --ease-in-out: cubic-bezier(.4,0,.2,1);
    --animate-spin: spin 1s linear infinite;
    --animate-ping: ping 1s cubic-bezier(0,0,.2,1)infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4,0,.6,1)infinite;
    --animate-bounce: bounce 1s infinite;
    --blur-xs: 4px;
    --blur-sm: 8px;
    --blur-md: 12px;
    --blur-lg: 16px;
    --blur-xl: 24px;
    --blur-2xl: 40px;
    --blur-3xl: 64px;
    --perspective-dramatic: 100px;
    --perspective-near: 300px;
    --perspective-normal: 500px;
    --perspective-midrange: 800px;
    --perspective-distant: 1200px;
    --aspect-video: 16/9;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4,0,.2,1);
    --default-font-family: var(--font-sans);

}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select
{
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
.hero {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

    .hero h1 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

.track-submissions .card {
    transition: transform 0.2s;
}

    .track-submissions .card:hover {
        transform: scale(1.02);
    }

/* Adjust spacing on smaller devices */
@media (max-width: 576px) {
    .hero {
        padding: 2rem 1rem;
    }
}

.rounded-3xl {
    border-radius: var(--radius-3xl);
}

.min-h-fit {
    min-height: fit-content;
}

.flex-col {
    flex-direction: column;
}

.h-fit {
    height: fit-content;
}

.max-h-80 {
    max-height: calc(var(--spacing)*80);
}

.input-prose {
    white-space: pre-line;
    font-size: 1rem;
    line-height: 1.75;
}

.fg-3 {
    flex-grow: 3;
}

.resize-none {
    resize: none;
}

.overflow-auto {
    overflow: auto;
}

.outline-hidden {
    outline-style: none;
}

.text-left {
    text-align: left;
}

.pt-3 {
    padding-top: calc(var(--spacing)*3);
}

.px-1 {
    padding-inline: calc(var(--spacing)*1);
}

.bg-transparent {
    background-color: #0000;
}

.chat-input {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
}

.text-gray-700 {
    color: #4e4e4e;
}

.gap-15 {
    gap: calc(var(--spacing)*1.5);
}

.p-15 {
    padding: calc(var(--spacing)*1.5);
}

.bg-black {
    background-color: #000000;
}

.rounded-full {
    border-radius: 3.40282e38px;
}

.self-center {
    align-self: center;
}

.bg-gray-900 {
    background-color: #f0f0f0;
}

@property --tw-inset-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

@property --tw-inset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
    syntax: "*";
    inherits: false;
}

@property --tw-ring-offset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

@property --tw-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

@property --tw-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
    syntax: "*";
    inherits: false;
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
    box-shadow: var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
}

.bg-white90 {
    background-color: #fafafa;
}

.border-gray-50 {
    border-color: #f9f9f9;
}

.flex-1 {
    flex: 1;
}

.flex {
    display: flex;
}

.relative {
    position: relative;
}

.px-25 {
    padding-inline: calc(var(--spacing)*2.5);
}

.bg-usa-blue {
    background-color: royalblue;
}

.border-none {
    border: none;
}

.edit-chat {
    outline: 0px solid transparent;
}

[contenteditable][placeholder]:empty:before {
    content: attr(placeholder);
    background-color: transparent;
    color: #555;
    font-style: italic;
}

.edit-chat {
    border: solid 1px #e0e0e0;
}

.chat-log {
    position: relative;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
}

.chat-bubble {
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
}

.chat-bubble--user {
    background-color: #007bff;
    color: #ffffff;
    margin-left: 70%;
    align-self: flex-end;
}

.chat-bubble:not(.chat-bubble--user) {
    background-color: #f0f0f0;
    align-self: flex-start;
}

.chat-message {
    display: flex;
    align-items: flex-end;
}

    .chat-message > .chat-bubble {
        margin: 0;
    }

.input-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
}

.overflow-auto {
    overflow: auto;
}

.flex-auto {
    flex: auto;
}

.flex-col {
    flex-direction: column;
}

.max-w-full {
    max-width: 100%;
}

.flex {
    display: flex;
}

.z-10 {
    z-index: 10;
}
