/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fff;
    max-width: 1024px;
    margin: 20px auto;
}

/* Custom Font */
@font-face {
    font-family: 'inter';
    src: url('Inter-Medium.woff') format('woff2'),
        url('assets/Inter-Medium.woff') format('woff');
}

/* Typography and List Styles */
ul {
    list-style-type: square;
}

ul>li>ul {
    list-style-type: circle;
}

ul>li>ul>li>ul {
    list-style-type: square;
}

ol li {
    font-family: Arial;
}

/* Header Styles */
header {
    padding: 2px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

header img {
    width: 100px;
    height: auto;
}

#header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

#home-button {
    text-decoration: none;
    font-size: 20px;
    color: #0078D7;
    font-weight: bold;
    margin-left: 10px;
}

#home-button:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#centered-text {
    text-align: center;
    background-color: white;
    font-size: 24px;
    margin: 20px;
    line-height: 1.2;
}

#privacy,
#impressum {
    padding: 80px;
    max-width: 800px;
    text-align: center;
}

/* SVG Background */
#background-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

#background-svg svg {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    color: white;
    padding: 100px 0;
    justify-content: space-around;
    background-color: #ffffff;
}

#footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}

.footer-link {
    text-decoration: none;
    color: #0078D7;
    margin: 0 15px;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Buttons */
button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.primary-button {
    background-color: #0078D7;
    color: white;
}

.primary-button:hover {
    background-color: #005cbf;
}

.secondary-button {
    background-color: #e7f8ff;
    color: #555;
}

.secondary-button:hover {
    background-color: #c0c0c0;
}

/* Text Sections */
.description {
    font-size: 16px;
    color: #444;
    max-width: 80%;
    margin: 20px auto;
    text-align: center;
    line-height: 1.5;
}

h2 {
    padding: 0 10px;
}

/* Drop Area */
#drop-area {
    border: 2px dashed #0078D7;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
    background-color: #f9f9f9;
    color: #555;
    cursor: pointer;
}

#drop-area:hover {
    background-color: #e8f4ff;
}

#file-list {
    margin-top: 10px;
    text-align: left;
    /* max-width: 80%; */
    margin: 10px auto;
    padding: 10px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    /* background-color: #f4f4f4; */
    overflow-y: auto;
    max-height: 150px;
    font-size: 14px;
}

/* Output Section */
#output-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto;
    width: 85%;
}

#output,
.output-section {
    flex: 1;
    height: 100px;
    margin-right: 10px;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    white-space: pre-wrap;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f4f4f4;
}

.output-section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px auto;
    width: 85%;
}

.output-section-button {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.output-section-button:hover {
    background-color: #c0c0c0;
}

#button-container {
    text-align: right;
    padding: 20px;
    margin: 0 auto;
    width: 85%;
}

#button-container button {
    margin-left: 10px;
    /* Adds space between buttons */
}

/* Custom Classes */
[data-custom-class='body'],
[data-custom-class='body'] * {
    background: transparent !important;
}

[data-custom-class='title'],
[data-custom-class='title'] * {
    font-family: Arial !important;
    font-size: 26px !important;
    color: #000000 !important;
}

[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
    font-family: Arial !important;
    color: #595959 !important;
    font-size: 14px !important;
}

[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
    font-family: Arial !important;
    font-size: 19px !important;
    color: #000000 !important;
}

[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
    font-family: Arial !important;
    font-size: 17px !important;
    color: #000000 !important;
}

[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
    color: #595959 !important;
    font-size: 14px !important;
    font-family: Arial !important;
}

[data-custom-class='link'],
[data-custom-class='link'] * {
    color: #3030F1 !important;
    font-size: 14px !important;
    font-family: Arial !important;
    word-break: break-word !important;
}