html {
    height: 100%;
    background-color: #f5f5f5;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.footer {
    margin-top: auto;
    padding: 1rem;
    background-color: #f5f5f5;
}

.footer .content {
    font-size: 0.875rem;
}

.section {
    flex-grow: 1;
}

.icon-upload::before {
    width: 24px;
    height: 24px;
    display: inline-block;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none" stroke="%232196f3" stroke-width="2"><rect x="4" y="13" width="16" height="9" rx="2"/><path d="M12 7v8M8 9l4-4 4 4"/></g></svg>');
}

#container {
    position: relative;
}

.content-background {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    font-weight: bold;
    font-size: larger;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    padding: 1em;
    border-radius: 10px;
    color: #dcdcdc;
    background-color: #ffffff;
    z-index: 1;
}

.content-foreground {
    position: relative;
    z-index: 2;
}

.markdown-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.markdown-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.markdown-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.markdown-content h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.markdown-content h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.markdown-content h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.markdown-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.markdown-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}
.markdown-content ol {
  list-style-type: decimal;
  padding-left: 2rem;
}
.markdown-content li {
  margin-bottom: 0.5rem;
}

.app-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 50%;
}

@media (max-width: 768px) {
    .app-toast {
        width: calc(100% - 2rem);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 50px;
    width: 100%;
    z-index: 9999;
    border-radius: 0;
    margin: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner-message {
    margin: 0;
    padding-right: 2rem;
}

.cookie-banner-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.control-container {
    display: flex;
    align-items: center;
}

.progress-bar-container {
    flex-grow: 1;
    margin-left: 10px;
}

.hyphens-auto {
    hyphens: auto;
}

