/* _content/PCP/Components/Layout/FooterComponent.razor.rz.scp.css */
/* Base styles - These should reflect your desired desktop layout exactly */
.footer[b-bped4goadg] {
    width: 100%;
    max-height: 70px;
    position: relative;
    border-top: 1px solid #dcdcdc;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly; /* This is key for your original desktop layout */
    padding: 0px 56px;
    gap: 0px; /* Crucial: no gap for main flex items, relies on space-between */
    text-align: left;
    font-size: 16px;
    color: #555;
    font-family: 'Open Sans';
}

.text[b-bped4goadg] {
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* Desktop: Prevent text from wrapping */
    text-overflow: ellipsis; /* Desktop: Show ellipsis if text overflows */
    /* If you want more control over ellipsis on desktop, add a max-width here */
    /* Example: max-width: 150px; */
}

.footer-child[b-bped4goadg] {
    width: 1px;
    position: relative;
    background-color: #d9d9d9;
    height: 60px;
    flex-shrink: 0; /* Prevent it from shrinking on desktop */
}

.arrow-up-right-icon[b-bped4goadg] {
    width: 24px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.text-parent[b-bped4goadg] { /* Group for text + icon */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

/* --- Media Queries for Mobile Responsiveness --- */

/* Small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .footer[b-bped4goadg] {
        max-height: none; /* Allow footer to grow vertically */
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items horizontally in the column */
        justify-content: flex-start; /* Items will start from the top of the column */
        padding: 20px 15px; /* Adjust padding for mobile */
        gap: 12px; /* Add a gap between stacked items on mobile */
        text-align: center; /* Center align all footer text on mobile */
    }

    .text[b-bped4goadg] {
        white-space: normal; /* Allow text to wrap naturally on mobile */
        text-overflow: clip; /* Remove ellipsis, let text wrap */
        overflow: visible; /* Ensure text is not hidden */
        font-size: 14px; /* Slightly smaller font for mobile */
        line-height: 20px;
        /* max-width is important here to ensure wrapping within the available space */
        max-width: 100%; /* Allows text to take full width and wrap */
    }

    .footer-child[b-bped4goadg] {
        display: none; /* Hide the vertical dividers on mobile */
    }

    .text-parent[b-bped4goadg] { /* Individual link items */
        justify-content: center; /* Center align the icon and text */
        font-size: 14px; /* Ensure consistent mobile font size for links */
        line-height: 20px;
        flex-wrap: wrap; /* Allow link text/icon to wrap if very long */
        gap: 6px; /* Slightly reduce gap within text-parent on mobile */
    }

    .arrow-up-right-icon[b-bped4goadg] {
        width: 20px; /* Slightly smaller icons for mobile */
    }
}

/* Medium devices (tablets, 601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .footer[b-bped4goadg] {
        padding: 0px 30px; /* Adjust padding for tablets */
        /* You might want a small gap here if space-between creates too large gaps */
        /* gap: 10px; */
    }

    .text[b-bped4goadg] {
        font-size: 15px;
        /* max-width for ellipsis might be needed here too if text is long */
    }

    .arrow-up-right-icon[b-bped4goadg] {
        width: 22px;
    }
}
/* _content/PCP/Components/Layout/HeaderComponent.razor.rz.scp.css */
.text[b-07c7e1fuxa] {
    position: relative;
    line-height: 38px;
}

.title[b-07c7e1fuxa] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.file-solid-icon[b-07c7e1fuxa] {
    width: 12px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.display[b-07c7e1fuxa] {
    position: relative;
    font-weight: 600;
}

.file-solid-parent[b-07c7e1fuxa] {
    border-radius: 360px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    gap: 12px;
}

.delete-right-solid-icon[b-07c7e1fuxa] {
    width: 16px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.display-parent[b-07c7e1fuxa] {
    border-radius: 360px;
    border: 2px solid #00d198;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    gap: 12px;
    color: #00d198;
}

.menu[b-07c7e1fuxa] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.menu-wrapper[b-07c7e1fuxa] {
    width: 1240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2d2d2d;
    font-family: 'Open Sans';
}

.bildmarke-prengemann-color-rgb-icon[b-07c7e1fuxa] {
    width: 80px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: cover;
}
.logo-icon[b-07c7e1fuxa] {
    width: 150px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.top-bar[b-07c7e1fuxa] {
    width: 100%;
    height: 10%;
    min-height: 90px;
    position: relative;
    border-bottom: 1px solid #dcdcdc;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 56px;
    gap: 0px;
    text-align: left;
    font-size: 20px;
    color: #fff;
    font-family: 'Open Sans';
}
/* _content/PCP/Components/Layout/LoadingComponent.razor.rz.scp.css */
.display[b-vhtoizwo02] {
    position: relative;
    line-height: 68px;
}

.display1[b-vhtoizwo02] {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Open Sans';
}

.intro-text[b-vhtoizwo02] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.mask-group-icon[b-vhtoizwo02] {
    width: 154px;
    height: 290px;
    object-fit: contain;
}

.loading-percentage[b-vhtoizwo02] {
    width: 72px;
    position: relative;
    font-size: 32px;
    line-height: 68px;
    font-weight: 600;
    font-family: 'Exo 2';
    color: #2d2d2d;
    text-align: center;
    display: inline-block;
}

/* Styling for the blur area */
.blur-area[b-vhtoizwo02] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    backdrop-filter: blur(4px);
    mask-image: linear-gradient(to top, rgba(0,0,0,0) 5%, rgba(0,0,0,1) 0);
    -webkit-backdrop-filter: blur(4px); /* Safari support */
    /* Apply the CSS animation */
    transition: mask-image 1s ease-in
}
.blur-area:hover[b-vhtoizwo02] {
    mask-image: linear-gradient(to top, rgba(0,0,0,0) 5%, rgba(0,0,0,1) 0);
}
.loading-icon[b-vhtoizwo02] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem; /* Equivalent to Tailwind mb-6 */
    position: relative; /* Important: Set position to relative for absolute children */
    overflow: hidden; /* Hide overflow if the blur extends slightly */
}

.placeholder-icon[b-vhtoizwo02] {
    width: 4rem; /* Equivalent to Tailwind w-16 */
    height: 4rem; /* Equivalent to Tailwind h-16 */
    border-radius: 9999px; /* Equivalent to Tailwind rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* Equivalent to Tailwind text-white */
    font-size: 1.875rem; /* Equivalent to Tailwind text-3xl */
    font-weight: 700; /* Equivalent to Tailwind font-bold */
    position: relative; /* Ensure icon content is above overlay */
    z-index: 1;
    height: 290px;
    width: 154px;
}
/* _content/PCP/Components/Layout/MainLayout.razor.rz.scp.css */

/* _content/PCP/Components/Layout/NavMenu.razor.rz.scp.css */
.menu-nav-menu[b-8ivevtkbl7] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 20px;
    color: #fff;
    font-family: 'Open Sans';
}
/* _content/PCP/Components/Layout/NavMenuComponent.razor.rz.scp.css */
.display-nav-menu[b-v7632c1kar] {
    position: relative;
    font-weight: 600;
}

.display-selected-nav-menu[b-v7632c1kar] {
    border-radius: 360px;
    background-color: #00d198;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    max-height: 46px;
    max-width: 164px;
}

.display-unselected-nav-menu[b-v7632c1kar] {
    border-radius: 360px;
    background-color: #f6f7f8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    color: #2d2d2d;
    max-height: 46px;
    max-width: 164px;
}
/* _content/PCP/Components/Pages/ButtonMenu.razor.rz.scp.css */
.card[b-1zr5vgynmw] {
    width: 100%;
    position: relative;
    box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    box-sizing: border-box;
    gap: 32px;
    text-align: left;
    font-size: 24px;
    color: #2d2d2d;
    font-family: 'Open Sans';
}

.file-arrow-up-solid-icon[b-1zr5vgynmw] {
    width: 24px;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.display[b-1zr5vgynmw] {
    position: relative;
    color: #00bf9f;
}

.display1[b-1zr5vgynmw] {
    position: relative;
    letter-spacing: -0.24px;
    line-height: 20px;
}

.display-wrapper[b-1zr5vgynmw] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: right;
    font-size: 16px;
    color: #2d2d2d;
}

.display-parent[b-1zr5vgynmw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    height: 80%;
}

.upload[b-1zr5vgynmw] {
    flex: 1;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    gap: 16px;
}

.display2[b-1zr5vgynmw] {
    position: relative;
    line-height: 34px;
}

.display-container[b-1zr5vgynmw] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: right;
    font-size: 16px;
    color: #555;
}

.get-started-by[b-1zr5vgynmw] {
    margin: 0;
}

.display4[b-1zr5vgynmw] {
    width: 100%;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Open Sans';
    color: #2d2d2d;
    text-align: left;
    display: inline-block;
}
/* _content/PCP/Components/Pages/ContactForm.razor.rz.scp.css */

.feedback-buttons[b-o0maiq9evi], .contact-prompt-buttons[b-o0maiq9evi] {
    margin-bottom: 25px;
}

.btn[b-o0maiq9evi] {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
}
.btn-selected[b-o0maiq9evi] {
    outline: 2px solid #008f7f; /* A darker shade of the primary button's background */
    outline-offset: 2px; /* Adds a small gap between the button and the outline */
}
.btn-primary[b-o0maiq9evi] {
    background-color: #00bf9f;
    color: white;
}

    .btn-primary:hover[b-o0maiq9evi] {
        background-color: #00bf9f;
        transform: translateY(-2px);
    }

.btn-secondary[b-o0maiq9evi] {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover[b-o0maiq9evi] {
        background-color: #5a6268;
        transform: translateY(-2px);
    }

.btn-success[b-o0maiq9evi] {
    background-color: #28a745;
    color: white;
}

    .btn-success:hover[b-o0maiq9evi] {
        background-color: #218838;
        transform: translateY(-2px);
    }

.btn-info[b-o0maiq9evi] {
    background-color: #17a2b8;
    color: white;
}

    .btn-info:hover[b-o0maiq9evi] {
        background-color: #138496;
        transform: translateY(-2px);
    }

.contact-form[b-o0maiq9evi] {
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

    .contact-form h3[b-o0maiq9evi] {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
        font-size: 1.5em;
    }

.form-group[b-o0maiq9evi] {
    margin-bottom: 18px;
}

    .form-group label[b-o0maiq9evi] {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: #555;
    }

.form-control[b-o0maiq9evi] {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

textarea.form-control[b-o0maiq9evi] {
    resize: vertical;
    min-height: 100px;
}

.form-actions[b-o0maiq9evi] {
    text-align: right;
    margin-top: 25px;
}

.btn-submit[b-o0maiq9evi] {
    background-color: #00bf9f;
    color: white;
    margin-left: 10px;
}

    .btn-submit:hover[b-o0maiq9evi] {
        background-color: #00bf9f;
        transform: translateY(-2px);
        outline: 2px solid #008f7f; /* A darker shade of the primary button's background */
        outline-offset: 2px; /* Adds a small gap between the button and the outline */
    }
/* _content/PCP/Components/Pages/GenerateData.razor.rz.scp.css */

.buttonsbutton1[b-ij2svpj1cr] {
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
    cursor: pointer;
    border-radius: 8px;
    background-color: #00d198;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #fff;
}
.text99[b-ij2svpj1cr] {
    color: #fff;
}
/* _content/PCP/Components/Pages/Home.razor.rz.scp.css */
.content-intro[b-sxtmx3uia0] {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
    text-align: center;
    font-size: 60px;
    color: #2d2d2d;
    font-family: 'Exo 2';
}
.content-view-data[b-sxtmx3uia0] {
    margin: auto;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    text-align: center;
    font-size: 40px;
    color: #2d2d2d;
    font-family: 'Exo 2';
    padding-bottom: 20px;
}
.content-loading[b-sxtmx3uia0] {
    margin: auto;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    text-align: center;
    font-size: 40px;
    color: #2d2d2d;
    font-family: 'Exo 2';
}
/* _content/PCP/Components/Pages/IntroComponent.razor.rz.scp.css */
.intro-text[b-wfi0j65ipv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    /* Added for better mobile padding/margins */
    padding: 0 15px; /* Add some horizontal padding to prevent text from touching screen edges */
}

/* Base styles for larger screens (desktop first approach) */
.display[b-wfi0j65ipv] {
    font-size: 60px;
    line-height: 68px;
    font-family: 'Exo 2';
    color: #2d2d2d;
    text-align: center;
}

.display1[b-wfi0j65ipv] {
    font-size: 18px;
    line-height: 28px;
    font-family: 'Open Sans';
    text-align: center;
}

.transform-data-into[b-wfi0j65ipv] {
    margin: 0;
}

/* --- Media Queries for Mobile Responsiveness --- */

/* Small devices (phones, 600px and down) */
@media (max-width: 600px) {
    .display[b-wfi0j65ipv] {
        font-size: 32px; /* Significantly reduced font size for mobile */
        line-height: 40px; /* Adjust line height accordingly */
    }

    .display1[b-wfi0j65ipv] {
        font-size: 16px; /* Slightly reduced for smaller screens */
        line-height: 24px;
    }

    .intro-text[b-wfi0j65ipv] {
        gap: 16px; /* Reduce gap on smaller screens */
        padding: 0 10px; /* Adjust padding for very small screens */
    }
}

/* Medium devices (tablets, 601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .display[b-wfi0j65ipv] {
        font-size: 48px; /* A size suitable for tablets */
        line-height: 56px;
    }

    .display1[b-wfi0j65ipv] {
        font-size: 17px;
        line-height: 26px;
    }
}
/* _content/PCP/Components/Pages/ViewDataComponent.razor.rz.scp.css */
.display[b-ghgclnmtp6] {
    position: relative;
    line-height: 68px;
}

.display1[b-ghgclnmtp6] {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Open Sans';
    text-align: left;
    padding-bottom: 5px;
}

.intro-text[b-ghgclnmtp6] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
}
.display2[b-ghgclnmtp6] {
    align-self: stretch;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}

.table[b-ghgclnmtp6] {
    align-self: stretch;
    height: 421px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.card[b-ghgclnmtp6] {
    align-self: stretch;
    box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.08), 0px 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    gap: 30px;
    text-align: left;
    font-size: 16px;
    font-family: 'Open Sans';
}
.button[b-ghgclnmtp6] {
    width: 86px;
    border-radius: 8px;
    height: 40px;
    overflow: hidden;
    flex-shrink: 0;
    display: none;
}

.text99[b-ghgclnmtp6] {
    position: relative;
    line-height: 24px;
    font-weight: 600;
}

.text-padding[b-ghgclnmtp6] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 2px;
}

.buttonsbutton[b-ghgclnmtp6] {
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -2px 0px rgba(10, 13, 18, 0.05) inset, 0px 1px 2px rgba(10, 13, 18, 0.05);
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #d5d7da;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
}

.buttonsbutton1[b-ghgclnmtp6] {
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
    border-radius: 8px;
    background-color: #00d198;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #fff;
}

.actions[b-ghgclnmtp6] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.bottom-bar[b-ghgclnmtp6] {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #414651;
    font-family: Inter;
}
.bottom-bar[b-ghgclnmtp6] {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #414651;
    font-family: Inter;
}
