@keyframes marqueeAnimation-9702849 {
    100% {
        transform: translateX(-4832.38px)
    }
}
@keyframes marqueeAnimation-3327609 {
    100% {
        transform: translateX(-4832.38px)
    }
}
@keyframes marqueeAnimation-7303198 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-1068347 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-9135969 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-4798303 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-9012131 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-7169409 {
    100% {
        transform: translateX(-100010px)
    }
}
@keyframes marqueeAnimation-6093969 {
    100% {
        transform: translateX(-100000px)
    }
}
@keyframes marqueeAnimation-8000156 {
    100% {
        transform: translateX(-100000px)
    }
}
@keyframes marqueeAnimation-5765354 {
    100% {
        transform: translateX(-100000px)
    }
}
@keyframes marqueeAnimation-1357184 {
    100% {
        transform: translateX(-100000px)
    }
}
@keyframes marqueeAnimation-8565704 {
    100% {
        transform: translateX(-100000px)
    }
}
@keyframes marqueeAnimation-593181 {
    100% {
        transform: translateX(-100000px)
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.cookie-banner p {
    margin: 0;
    flex: 1;
    text-align: left;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
#accept-cookies, #reject-cookies {
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    min-width: 120px;
    max-width: 150px;
    text-align: center;
}
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    #accept-cookies, #reject-cookies {
        width: 100%;
        margin-top: 5px;
    }
    .cookie-banner p {
        text-align: center;
    }
}

/* Page specific styles from demo.html */
.upload-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-submit {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.btn-submit.active:hover {
    background-color: #0056b3;
}

/* Wrapper Box Styling */
.input-box-wrapper {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* Ensures responsiveness */
    gap: 10px;
    align-items: center;
    /* Align vertically */
}

/* Base System Label */
.base-system-box {
    background-color: #a0a0a0;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    color: white;
    flex-shrink: 0;
    min-width: 120px;
    /* Ensures it doesn't shrink too much */
}

/* Ensure dropdown & file input stay in line */
.input-box {
    flex: 1;
    min-width: 150px;
    /* Ensures it doesn't break */
}

/* Dropdown Styling */
.form-select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    border: 2px solid #ced4da;
}

/* File Input Styling */
.input-box input[type="file"] {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    text-align: left;
    color: black;
}

/* Hide default file input appearance */
.input-box input[type="file"]::-webkit-file-upload-button {
    background-color: #a0a0a0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* File Input Button Hover */
.input-box input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #888888;
}

/* Ensure checkboxes are larger */
.form-check-input1 {
    width: 18px;
    height: 18px;
    margin-left: 100px;
    cursor: pointer;
    accent-color: grey;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-left: 35px;
    cursor: pointer;
}

/* For WebKit-based browsers (Chrome, Safari) */
.form-check-input:disabled:checked {
    background-color: gray !important;
}

/* Align checkboxes and labels in one horizontal row */
.checkboxes-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Move "Anonymize" checkbox to the left */
.anonymization-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Move "Purge Data" label and checkbox to the right */
.purge-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    /* Pushes to the right */
}

/* Ensure responsiveness on mobile */
@media (max-width: 768px) {
    .input-box-wrapper {
        flex-direction: row;
        /* Ensures all items stay in a line */
        flex-wrap: wrap;
        /* Allows wrapping */
        justify-content: space-between;
    }

    .base-system-box {
        min-width: 100px;
        /* Prevents shrinking */
    }

    .input-box,
    .form-select,
    .form-control {
        flex: 1;
        min-width: 100px;
        /* Prevents breaking */
    }

    .form-select,
    .form-control {
        width: 100%;
    }

    /* Ensure checkboxes remain side by side */
    .checkboxes-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Adjust margins for mobile alignment */
    .form-check-input1 {
        margin-left: 65px;
    }

    .form-check-input {
        margin-left: 10px;
    }

    .form-check-label1 {
        margin-right: 95px;

    }
}

/* Styles from inline attributes for demo.html */
.demo-style-0 { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:9998; }
.demo-style-1 { display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:#1e1e1e; color:#fff; padding:20px 30px; border-radius:0 0 14px 14px; z-index:9999; box-shadow:0 4px 12px rgba(0,0,0,0.6); font-family:'Segoe UI', sans-serif; min-width:300px; text-align:center; }
.demo-style-2 { font-size:15px; margin-bottom:20px; }
.demo-style-3 { padding:8px 22px; background:#2f2f2f; color:#dcdcdc; border:2px solid #555; border-radius:10px; font-weight:500; cursor:pointer; box-shadow:inset 0 0 5px #444; }
.demo-style-4 { height: 398.8px; }
/* .demo-style-5 for style="" will be empty or omitted */
.demo-style-6 { display:none; }
.demo-style-7 { width: 100%; }
.demo-style-8 { animation-delay: 1500ms; }
.demo-style-9 { position: relative; overflow: hidden; padding-top: 56.25%; }
.demo-style-10 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.demo-style-11 { animation-delay: 0ms; }
