/* _content/TroyKaizenFormApp/Components/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-pv118grhqy] {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 30px;
    font-family: sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    color: black;
}

.logo-close button[b-pv118grhqy] {
    display: none;
}

.cookie-logo[b-pv118grhqy] {
    width: 100px;
}

.cookie-close-btn[b-pv118grhqy] {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Text styles */
.cookie-col.text h4[b-pv118grhqy] {
    font-weight: bold;
    font-size: medium;
    margin: 0 0 8px 0;
}

.cookie-col.text p[b-pv118grhqy] {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-col.text[b-pv118grhqy] {
    max-width: 80%;
}

/* Button styles */
.cookie-col.buttons[b-pv118grhqy] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 400px;
}

.cookie-btn[b-pv118grhqy] {
    padding: 10px 16px;
    border: 2px solid red;
    background: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
}

.cookie-btn:hover[b-pv118grhqy] {
    background: #f5f5f5;
}

.close-banner[b-pv118grhqy] {
     display:block;
}

/* MOBILE: stack layout vertically */
@media (max-width: 600px) {
    .cookie-banner[b-pv118grhqy] {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 20px;
        color: black;
    }

    .logo-close[b-pv118grhqy] {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-close button[b-pv118grhqy] {   
        display:block;
    }

    .cookie-col.buttons[b-pv118grhqy] {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: space-around;
    }

    .cookie-btn[b-pv118grhqy] {
        width: 100%;
    }

    .close-banner[b-pv118grhqy] {
        display: none;
    }

    .cookie-col.text[b-pv118grhqy] {
        max-width: 100%;
    }
}
/* _content/TroyKaizenFormApp/Components/FooterComponent.razor.rz.scp.css */
.social-media[b-juzjnoekuy] {
    display: flex;
    gap: 10px;
}

.social-media  img[b-juzjnoekuy] {
    height: 25px;
    vertical-align: middle;
    transition: transform 0.2s ease; /* smooth scaling */
}
.social-media img:hover[b-juzjnoekuy] {
    transform: scale(1.14); /* makes it about 28px if original is 25px */
}

.footer-links[b-juzjnoekuy] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: small;
}

.footer-links a[b-juzjnoekuy] {
    color: #9f9f9f;
    text-decoration: none;
    line-height: 1.5;
}

.footer-links a:hover[b-juzjnoekuy] {
    color: #dadada;
    text-decoration: none;
}


footer[b-juzjnoekuy] {
    background-color: #1a1a1a;
    padding: 20px 0 20px 0;
}

.container[b-juzjnoekuy]{
    max-width: 1314px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: small;
    justify-content: space-between;
}
/* _content/TroyKaizenFormApp/Components/HeaderComponent.razor.rz.scp.css */
.btn-link-image[b-spo12wx86y] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-link-image :hover[b-spo12wx86y]{
    border: none;
    text-decoration: none;
}

header[b-spo12wx86y] {
    background-color: #1a1a1a;
    padding: 5px 0 5px 0;
}

.container[b-spo12wx86y]{
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1314px;
}
/* _content/TroyKaizenFormApp/Pages/Cookies.razor.rz.scp.css */

.page-wrapper[b-ts7tfexbtw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
      background-color: #fff;
}

/* header {
    background-color: #1a1a1a;
    padding: 5px 0 5px 0;
} */

.btn-link[b-ts7tfexbtw], a[b-ts7tfexbtw] {
    text-decoration: underline;
    font-weight: bold;
    color: #ff1e1e;
}

.btn-link :hover[b-ts7tfexbtw], a :hover[b-ts7tfexbtw] {
    color: #830101;
}


main.cookie-content[b-ts7tfexbtw] {
    flex: 1; /* This makes main take up available space */
    padding: 30px;
    color: #1f1f1f;
    max-width: 1314px;
    line-height: 1.5;
}

.container[b-ts7tfexbtw]{
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1314px;
}

main.cookie-content > p[b-ts7tfexbtw] {    
    margin: 0 0 14px 0;
}

/* footer {
    background-color: #1a1a1a;
    padding: 20px 0 20px 0;
} */

h1:focus[b-ts7tfexbtw],
h1:active[b-ts7tfexbtw],
h1:target[b-ts7tfexbtw] {
  outline: none;
  border: none;
}

h1[b-ts7tfexbtw] {
    padding-top: 2rem;
    padding-bottom: 2rem;
    outline: none !important;
    border: none !important;
    font-weight: 500;
}

@media (max-width: 600px) {
    main.cookie-content[b-ts7tfexbtw] {
        padding-left: 30px;
        padding-right: 30px;
    }
    h1[b-ts7tfexbtw] {
        font-size: 2rem;
    }
}

.CookieDeclarationType[b-ts7tfexbtw] {
    display: block;
    margin: 12px 0 12px 0;
    padding: 8px 8px 0 8px;
    border: 1px solid #333333;
    vertical-align: top;
}

.CookieDeclarationTypeHeader[b-ts7tfexbtw] {
    font-weight: bold;
}

.CookieDeclarationTypeDescription[b-ts7tfexbtw] {
    margin: 2px 0 16px 0;
}

.CookieDeclarationTable[b-ts7tfexbtw] {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 18px 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.CookieDeclarationTableHeader[b-ts7tfexbtw] {
    font-weight: bold;
    border-bottom: 1px solid #777777;
    text-align: left;
    padding: 4px;
    overflow: hidden;
}

.CookieDeclarationTableCell[b-ts7tfexbtw] {
    text-overflow: ellipsis;
    word-wrap: break-word;
    border-bottom: 1px solid #777777;
    vertical-align: top;
    padding: 4px 4px 5px 4px;
}
/* _content/TroyKaizenFormApp/Pages/KaizenForm.razor.rz.scp.css */

.page-wrapper[b-zyv3xq4blh] {
    padding: 40px;
     background-image: url(/images/imageedit_2_8801168377.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Responsive form layout */
.form[b-zyv3xq4blh] {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.5rem;;
    box-shadow: 0 0.5rem 1.5rem rgba(229, 9, 20, 0.25);
    border: 2px solid #e50914;
    width: 100%;
    max-width: 850px;
    margin: auto;
    box-sizing: border-box;
}


/* HEADER WITH LOGO + PROJECT NAME */
.form-header[b-zyv3xq4blh] {
    /* align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e50914;
    padding-bottom: 1rem; */

    align-items: center;
    flex-direction: column;
    display: flex;
    gap: 1rem;
   
    /* gap: 10px; */
    border-bottom: 1.5px solid #e50914;
    padding-bottom: 2rem;
}

.form-header img[b-zyv3xq4blh] {
    height: auto;
    width: 150px;
}

.form-header h2[b-zyv3xq4blh] {
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    word-break: break-word;
    font-size: 1.30rem;
    font-weight: bold;
}

.header-label[b-zyv3xq4blh] {
    word-break: break-word;
    font-size: 1.1rem;
    line-height: 1.5; 
    color: #ffffff;
    font-weight: 600;
}

.inputRadioOption[b-zyv3xq4blh] {
    font-weight: 500;
    color: #cccccc;
    margin-top: 0.3rem;
}

button[type="submit"][b-zyv3xq4blh] {
    background-color: #e50914;
    color: #fff;
    transition: background-color 0.3s ease;
    width: 100%;
}

button[type="submit"]:hover[b-zyv3xq4blh] {
    background-color: #c20811;
    border-color: #541c3b;
}


.file-item button[b-zyv3xq4blh] {
  border: none;
  background: transparent;
  color: #dc3545;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.form-upload-files-check[b-zyv3xq4blh] {
    margin-top: 24px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    gap: 5px;
}

/* Secțiunea de upload */
.file-upload-section[b-zyv3xq4blh] {
    margin-top: 20px;
    padding: 20px;
    background-color: #ebedef;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.upload-icon[b-zyv3xq4blh] {
    width: 48px;
    height: 48px;
    color: #6b7280;
    margin-bottom: 16px;
}

.upload-text[b-zyv3xq4blh] {
    margin-bottom: 8px;
}



.upload-sub-text[b-zyv3xq4blh] {
    font-size: 14px;
    color: #6b7280;
}


.file-input[b-zyv3xq4blh] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Preview files */
.files-preview[b-zyv3xq4blh] {
    margin-top: 20px;
}

.file-item[b-zyv3xq4blh] {
    display: flex;
    align-items: center;
    margin-top: 10px;
    flex-direction: row;
    align-content: center;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 5px;
    justify-content: space-around;
    padding: 5px;
    gap:10px;
}

.file-item:hover[b-zyv3xq4blh] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-btn[b-zyv3xq4blh] {
    background-color: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
}

.remove-btn:hover[b-zyv3xq4blh] {
    background-color: #fecaca;
    transform: scale(1.1);
}

/* Erori */
.upload-error[b-zyv3xq4blh] {
    padding: 12px 16px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #e53935;
    font-size: 0.9em;
}

.error-icon[b-zyv3xq4blh] {
    font-size: 16px;
}

.error-text[b-zyv3xq4blh] {
    color: #dc2626;
    font-size: 14px;
}

.text-danger[b-zyv3xq4blh] {
    margin-left: 5px;
}

button[type="submit"]:disabled[b-zyv3xq4blh] {
    background-color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mesaje */
.message[b-zyv3xq4blh] {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.message.success[b-zyv3xq4blh] {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error[b-zyv3xq4blh] {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.message.warning[b-zyv3xq4blh] {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.upload-area:hover[b-zyv3xq4blh] {
    border-color: #541c3b; 
     /* #007bff; */
}

.upload-icon[b-zyv3xq4blh] {
    width: 40px;
    height: 40px;
    stroke: #541c3b; 
}

.upload-text[b-zyv3xq4blh] {
    margin-top: 10px;
}

.files-preview ul[b-zyv3xq4blh] {
    list-style: none;
    padding: 0;
}

.file-icon[b-zyv3xq4blh] {
    background-color: #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    width: 32px;
    height: auto;
    /* margin-right: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgb(255, 255, 255);
}

.file-name[b-zyv3xq4blh] {
    flex-grow: 1;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
    width: 80%;
    font-size: 0.95em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf .file-icon[b-zyv3xq4blh] { background-color: #e53935; color: white; }
.doc .file-icon[b-zyv3xq4blh] { background-color: #1e88e5; color: white; }
.xls .file-icon[b-zyv3xq4blh] { background-color: #43a047; color: white; }
.ppt .file-icon[b-zyv3xq4blh] { background-color: #fb8c00; color: white; }
.img .file-icon[b-zyv3xq4blh] { background-color: #6a1b9a; color: white; }
.default .file-icon[b-zyv3xq4blh] { background-color: #9e9e9e; color: white; }

.upload-area[b-zyv3xq4blh] {
    border: 2px dashed #ccc;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;  
    border-radius: 10px;
}

.upload-content[b-zyv3xq4blh] {
    margin: 0 auto;
}

.upload-icon[b-zyv3xq4blh] {
    width: 40px;
    height: 40px;
    stroke: #541c3b; 
    margin-bottom: 10px;
}

.upload-main-text[b-zyv3xq4blh] {
    font-weight: bold;
    display: block;
    font-size: 18px;
    color: #374151;
    margin-bottom: 4px;
}

.upload-hint[b-zyv3xq4blh] {
    font-size: 0.8em;
    color: #999;
    margin-top: 10px;
}

.upload-browse-button[b-zyv3xq4blh] {
    align-content: center;
    width: 160px;
    height: 45px;
    display: inline-block;
    margin: 10px 5px;
    background-color: #541c3b; 
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.upload-browse-button:hover[b-zyv3xq4blh] {
    background-color: #984c75;
}

.files-preview ul[b-zyv3xq4blh] {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.btn-remove-file[b-zyv3xq4blh] {
    margin-left: 8px;
    color: white;
    background-color: red;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 18px;
    padding: 0;
}

/* Spacing for questions and responses */
 .form-check-label[b-zyv3xq4blh] {
    display: block;
    font-weight: 600;
    color: #cccccc;
} 

.checkbox-input[b-zyv3xq4blh] {
    margin: revert;
    margin-left: 0px;
}

.upload-browse-button.disabled[b-zyv3xq4blh] {
    opacity: 0.5;
    pointer-events: none; /* prevents clicking */
    cursor: not-allowed;
}

/* In case on wanting to turn back to blue, delete the following lines: */
.progress-bar[b-zyv3xq4blh] {
    background-color: #808080;
}

.image-radio-group[b-zyv3xq4blh]{
    display: flex !important;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap !important;
    padding: 5px;
}

.image-radio-option[b-zyv3xq4blh] {
    cursor: pointer;
    border: 3px solid transparent;
    padding: 2px;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.image-radio-option:hover[b-zyv3xq4blh] {
    border-color: #aaa;
}

.image-radio-option.selected[b-zyv3xq4blh] {
    cursor: default;
    border-color: #ff0000;
    background-color: rgba(255, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .form-header[b-zyv3xq4blh] {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .form-header img[b-zyv3xq4blh] {
        width: 80px;
        margin-bottom: 0.5rem;
    }
    .form-header h2[b-zyv3xq4blh] {
        font-size: 1.2rem;
        word-break: break-word;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    .header-label[b-zyv3xq4blh] {
        font-size: 1rem;
    }
    .form[b-zyv3xq4blh] {
        padding: 1rem;
        max-width: 100%;
    }
  
    button[type="submit"][b-zyv3xq4blh] {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .upload-area[b-zyv3xq4blh] {
        padding: 30px 15px;
    }
    
    .file-upload-section[b-zyv3xq4blh] {
    margin-top: 0px;
    padding: 5px;
    }

    .btn-remove-file[b-zyv3xq4blh] {
        margin-left: 0px;
    }

    .image-radio-option > img[b-zyv3xq4blh] {
        width: 130px!important;
    }

    .page-wrapper[b-zyv3xq4blh] {
        padding: 20px;
    }
}
/* _content/TroyKaizenFormApp/Pages/NotFound.razor.rz.scp.css */

.page-wrapper[b-c1ocn4h0p4] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}

.container[b-c1ocn4h0p4]{
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1314px;
}

main.main-content[b-c1ocn4h0p4] {
    flex: 1; /* This makes main take up available space */
    color: #000000;
    width: 50%;
    align-content: center;
    margin: auto;
}

.main-card[b-c1ocn4h0p4] {
    max-width: 1000px;
    height: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 40% auto;
}

.main-card-image-container[b-c1ocn4h0p4] {
    background-image: url(/images/imageedit_2_8801168377.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px 0 0 15px;
}

.main-card-text-container[b-c1ocn4h0p4]{
    margin: auto;
    padding: 0 20px 0 20px;
}

h2:focus[b-c1ocn4h0p4],
h2:active[b-c1ocn4h0p4],
h2:target[b-c1ocn4h0p4] {
  outline: none;
  border: none;
}

h2[b-c1ocn4h0p4] {
    padding-bottom: 2rem;
}

@media (max-width: 600px) {
    main.main-content[b-c1ocn4h0p4] {
        flex: 1; /* This makes main take up available space */
        color: #000000;
        align-content: center;
        margin: auto;
        width:90%
    }
    
    .main-card[b-c1ocn4h0p4] {
        max-width: 1000px;
        height: 300px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 15px;
        display: grid;
        grid-template-rows: 40% auto;
        grid-template-columns: none;
    }   

    .main-card-image-container[b-c1ocn4h0p4] {
        background-image: url(/images/imageedit_2_8801168377.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 15px 15px 0 0;
    }
}

/* _content/TroyKaizenFormApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-pamd83r0fv] {
    /* position: relative;
    display: flex;
    flex-direction: column;  */  
}

.body[b-pamd83r0fv] {
    /* color: #eaeaea;
    font-family: Jeko,Helvetica Neue,Arial,sans-serif;
    background-image: url(/images/imageedit_2_8801168377.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    align-content: center;
    min-width: 100%;  */
}

main[b-pamd83r0fv] {
 flex: 1; 
}


