/* /Components/Common/ConfirmDialogOverlay.razor.rz.scp.css */
.confirm-dialog-overlay[b-0330gooov0] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirm-dialog[b-0330gooov0] {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.confirm-dialog h3[b-0330gooov0] {
    margin-top: 0;
    color: #333;
}

.confirm-dialog-buttons[b-0330gooov0] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cancel-button[b-0330gooov0] {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}

.delete-button[b-0330gooov0] {
    background-color: #ff4c4c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}
/* /Components/Common/DialogWithBackground.razor.rz.scp.css */
.background-image[b-11lnedritg] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-11lnedritg] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
}

.dialog button[b-11lnedritg] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Components/Common/FloatingMessage.razor.rz.scp.css */
.success-message[b-uznzovdzda] {
    background-color: #EDFFF3;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn-b-uznzovdzda 0.3s ease-in-out;
}

@keyframes fadeIn-b-uznzovdzda {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Common/GuiaRapida.razor.rz.scp.css */
.app-container[b-32l6bbs6fr] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-32l6bbs6fr] {
    margin-bottom: 2rem;
    text-align: center;
}

.content-container[b-32l6bbs6fr] {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.button-container[b-32l6bbs6fr] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn[b-32l6bbs6fr] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary[b-32l6bbs6fr] {
    background-color: #007bff;
    color: white;
}

.btn-secondary[b-32l6bbs6fr] {
    background-color: #6c757d;
    color: white;
}
/* /Components/Common/Input/ImagePicker.razor.rz.scp.css */
.image-preview-wrapper[b-lhgaiyf7r1] {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.image-preview-wrapper[b-lhgaiyf7r1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}


.image-preview-wrapper > span[b-lhgaiyf7r1],
.image-preview-wrapper > svg[b-lhgaiyf7r1] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1;
    color: white;
}

.image-preview-wrapper:hover[b-lhgaiyf7r1]::before {
    opacity: 1;
}

.image-preview-wrapper:hover > span[b-lhgaiyf7r1],
.image-preview-wrapper:hover > svg[b-lhgaiyf7r1] {
    opacity: 1;
    transform: translateY(0);
}

.image-preview-wrapper:not([style*="background-image"])[b-lhgaiyf7r1] {
    background-color: #f5f5f5;
}

.image-preview-wrapper:not([style*="background-image"]) > span[b-lhgaiyf7r1],
.image-preview-wrapper:not([style*="background-image"]) > svg[b-lhgaiyf7r1] {
    opacity: 1;
    transform: translateY(0);
    color: #333;
}

.remove-image-button[b-lhgaiyf7r1] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview-wrapper:hover .remove-image-button[b-lhgaiyf7r1] {
    opacity: 1;
}

.image-preview-wrapper.no-image[b-lhgaiyf7r1] {
    background-color: #f5f5f5 !important;
    background-image: none !important;
}

.image-preview-wrapper.no-image > span[b-lhgaiyf7r1],
.image-preview-wrapper.no-image > svg[b-lhgaiyf7r1] {
    opacity: 1 !important;
    transform: translateY(0) !important;
    color: #333 !important;
}
/* /Components/Common/InputComponent.razor.rz.scp.css */
.input-group[b-skhon80fih] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.input-container[b-skhon80fih] {
    position: relative;
    width: 100%;
}

.input-container[b-skhon80fih]  input {
    padding: 12px;
    border: 1px solid var(--stroke-color);
    background-color: var(--color-surface-elevation-4) !important;
    border-radius: 10px !important;
    width: 100%;
}

.custom-input:focus[b-skhon80fih] {
    border-color: #0078DC;
    color: #000;
}

/* Estilos para el bot�n de mostrar/ocultar contrase�a */
.toggle-password-button[b-skhon80fih] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    padding: 0;
}

.toggle-password-button:hover[b-skhon80fih] {
    color: #0078DC;
}

@media only screen and (min-width: 768px) {
    /* Ajuste del bot�n para pantallas m�s grandes */
    .toggle-password-button[b-skhon80fih] {
        right: 16px;
    }
}
/* /Components/Common/InputImage.razor.rz.scp.css */
.image-upload-form[b-jnc8qpbaai] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.image-upload-actions[b-jnc8qpbaai] {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 6px;
}

.select-image-button[b-jnc8qpbaai],
.upload-image-button[b-jnc8qpbaai] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    flex: 1;
}

.select-image-button[b-jnc8qpbaai] {
    background-color: #30B49F;
    color: white;
}

.image-preview-container[b-jnc8qpbaai] {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-header[b-jnc8qpbaai] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.remove-image-button[b-jnc8qpbaai] {
    background: none;
    border: none;
    color: #ff4c4c;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}

.remove-image-button:hover[b-jnc8qpbaai] {
    background-color: #ffeeee;
    border-radius: 4px;
}

.image-preview[b-jnc8qpbaai] {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fafafa;
}

.preview-image[b-jnc8qpbaai] {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}
/* /Components/Common/LanguajeSelector.razor.rz.scp.css */
.language-selector[b-orx8bre891] {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.language-label[b-orx8bre891] {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.language-select[b-orx8bre891] {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.language-select:hover[b-orx8bre891] {
    border-color: #0078DC;
}

.language-select:focus[b-orx8bre891] {
    border-color: #0078DC;
    box-shadow: 0 0 0 3px rgba(0, 120, 220, 0.1);
}
/* /Components/Common/LoadingSpinner.razor.rz.scp.css */
.loading-spinner[b-iecqk3vt0l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.spinner[b-iecqk3vt0l] {
    border: 3px solid #f3f3f3;
    border-top: 3px solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin-b-iecqk3vt0l 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-iecqk3vt0l {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Components/Common/Table/Table.razor.rz.scp.css */
.table-wrapper[b-cz1agbk829] {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    overflow: auto;
    white-space: normal;
    background-color: var(--color-surface-elevation-4);
    margin: 0;
    padding: 6px;
    border-radius: 8px;
}

table[b-cz1agbk829] {
    margin: 0;
}

th[b-cz1agbk829], td[b-cz1agbk829] {
    padding: 6px 16px;
    white-space: nowrap;
}

.tr-add[b-cz1agbk829], thead[b-cz1agbk829] {
    background-color: #ECF8FF;
}
/* /Components/Common/TButton/TButton.razor.rz.scp.css */
.button[b-0kqge6toz0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 12px 16px;
    border-radius: 8px;
    gap: 6px;
    
    border: none;
    background-color: var(--color-primary);
    
    color: white;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.button-secondary[b-0kqge6toz0] {
    background-color: #0250a5;
    border: 1px solid var(--stroke-color);
}


@media (min-width: 600px) {
    .button[b-0kqge6toz0] {
        width: min-content;
    }
}
/* /Components/Credits/CreditsPackCard.razor.rz.scp.css */
.card[b-d1wnewjuc3] {
    align-items: center;
    width: 100%;
}

.extra[b-d1wnewjuc3] {
    display: block;
    position: absolute;
    top: 12px;
    right: 0;
    padding: 8px;
    border-radius: 8px 0 0 8px;
    background-color: var(--bs-yellow);
    font-weight: 600;
}

.context[b-d1wnewjuc3] {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 70px 20px 40px 20px;
}

.context h2[b-d1wnewjuc3], p[b-d1wnewjuc3]{
    margin: 0;
    padding: 0;
}

h2[b-d1wnewjuc3] {
    font-size: 36px;
}

.button[b-d1wnewjuc3] {
    width: 100%;
}

@media (min-width: 600px) {
    .card[b-d1wnewjuc3] {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .card[b-d1wnewjuc3] {
        max-width: 320px;
    }
}
/* /Components/Home/HomeTasksOverview.razor.rz.scp.css */
.tasks-overview[b-sd8ysia27m] {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    margin-bottom: 8px;
}
.date-title[b-sd8ysia27m] {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.date-info[b-sd8ysia27m] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: black;
    font-size: 12px;
}

.info-item[b-sd8ysia27m] {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .info-item svg[b-sd8ysia27m] {
        color: black;
    }

.stats-container[b-sd8ysia27m] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-column: 1 / -1;
}

.task-stat-card[b-sd8ysia27m] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.task-number[b-sd8ysia27m] {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.task-label[b-sd8ysia27m] {
    font-size: 12px;
}

/* Estilos para tablets y desktop */
@media (min-width: 768px) {
    .tasks-overview[b-sd8ysia27m] {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
        height: 100%;
        justify-content: flex-start;
    }

    .date-title[b-sd8ysia27m] {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .date-info[b-sd8ysia27m] {
        flex-direction: row;
        gap: 24px;
        font-size: 14px;
    }

    .stats-container[b-sd8ysia27m] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        flex: 1; 
    }

    .task-stat-card[b-sd8ysia27m] {
        padding: 24px;
        min-height: 120px;
        justify-content: center;
    }

    .task-number[b-sd8ysia27m] {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .task-label[b-sd8ysia27m] {
        font-size: 14px;
        text-align: left;
    }
}
/* /Components/Members/MemberCard.razor.rz.scp.css */
.worker-info[b-3g9ye063pc] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.worker-photo[b-3g9ye063pc] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.worker-details[b-3g9ye063pc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.worker-name[b-3g9ye063pc] {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

@media (min-width: 600px) {
    .worker-card[b-3g9ye063pc] {
        width: 328px;
    }
}
/* /Components/Members/MemberCardExt.razor.rz.scp.css */
.worker-info[b-m264aul2ct] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.worker-photo[b-m264aul2ct] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.worker-details[b-m264aul2ct] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.worker-info-container[b-m264aul2ct] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.worker-detail-row[b-m264aul2ct] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.worker-name[b-m264aul2ct] {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

@media (min-width: 600px) {
    .worker-card[b-m264aul2ct] {
        width: 328px;
    }
}
/* /Components/Projects/ProjectCard.razor.rz.scp.css */
.project-card[b-chbkvb696w] {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.project-title[b-chbkvb696w] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}

.project-details[b-chbkvb696w] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item[b-chbkvb696w] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: black;
    font-size: 12px;
}

.detail-item svg[b-chbkvb696w] {
    color: black;
}

.no-data p[b-chbkvb696w] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.btn[b-chbkvb696w] {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-primary[b-chbkvb696w] {
    background-color: #0078DC;
    border-color: #0078DC;
}
/* /Components/Subscription/SubscriptionCard.razor.rz.scp.css */
.button[b-s837f08alg] {
    width: 100%;
}

.subscription-card[b-s837f08alg] {
    min-width: 272px;
    width: 100%;
    max-width: 360px;
}

@media (min-width: 600px) {
    .subscription-card[b-s837f08alg] {
        width: 360px;
    }
}
/* /Components/Tasks/DailyTaskCard.razor.rz.scp.css */
.flex-col[b-bpzsmup8p9] {
    flex: 1;
    margin-right: 10px;
}

.task-title[b-bpzsmup8p9] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}

.task-details[b-bpzsmup8p9] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item[b-bpzsmup8p9] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: black;
    font-size: 12px;
}

.detail-item svg[b-bpzsmup8p9] {
    color: black;
}

.no-data span[b-bpzsmup8p9] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.progress-fill[b-bpzsmup8p9] {
    background: linear-gradient(90deg, #7A5FFF, #4FACFE);
}

.progress-header[b-bpzsmup8p9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.progress-text[b-bpzsmup8p9] {
    text-align: right;
    font-size: 10px;
    color: #636363;
}

.progress-name[b-bpzsmup8p9] {
    text-align: left;
    font-size: 10px;
    color: #636363;
}
/* /Components/Tasks/TaskCard.razor.rz.scp.css */
.flex-col[b-jko8roxauo] {
    flex: 1;
    margin-right: 10px;
}

.task-title[b-jko8roxauo] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}

.task-details[b-jko8roxauo] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-item[b-jko8roxauo] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: black;
    font-size: 12px;
}

.detail-item svg[b-jko8roxauo] {
    color: black;
}

.no-data span[b-jko8roxauo] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}
/* /Components/User/CompanyInfo.razor.rz.scp.css */
.form-actions[b-vtc9qlry1c] {
    display: flex;
    gap: 8px;
}
/* /Components/User/PersonalInformation.razor.rz.scp.css */
.form-actions[b-92vdojdkdo] {
    display: flex;
    gap: 8px;
}
/* /Layout/Company/CompanyHeader.razor.rz.scp.css */
.hamburger-button-header[b-oh8u0lo5gv] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-right: 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-button-header:hover[b-oh8u0lo5gv] {
    background-color: #f5f5f5;
}

.hamburger-icon[b-oh8u0lo5gv] {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span[b-oh8u0lo5gv] {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span:nth-child(1)[b-oh8u0lo5gv] {
    top: 0px;
}

.hamburger-icon span:nth-child(2)[b-oh8u0lo5gv] {
    top: 8px;
}

.hamburger-icon span:nth-child(3)[b-oh8u0lo5gv] {
    top: 16px;
}

.hamburger-icon.open span:nth-child(1)[b-oh8u0lo5gv] {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2)[b-oh8u0lo5gv] {
    opacity: 0;
    left: -60px;
}

.hamburger-icon.open span:nth-child(3)[b-oh8u0lo5gv] {
    top: 8px;
    transform: rotate(-135deg);
}

.header-with-action[b-oh8u0lo5gv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: black;
}

.header-title[b-oh8u0lo5gv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-title span[b-oh8u0lo5gv] {
    font-size: 16px;
    color: black;
}

.button[b-oh8u0lo5gv] {
    margin: -10px;
}

@media (min-width: 1024px) {
    .hamburger-button-header[b-oh8u0lo5gv] {
        display: none;
    }
}
/* /Layout/Company/CompanyMobileNav.razor.rz.scp.css */
.nav-item[b-4wpfo8x974] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
}

.nav-button[b-4wpfo8x974] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    color: #0078DC;
}

    .nav-button.active[b-4wpfo8x974] {
        background-color: #0078DC;
        color: white;
    }

    .nav-button svg[b-4wpfo8x974] {
        width: 22px;
        height: 22px;
    }

    .nav-button span[b-4wpfo8x974] {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
    }


.profile-pic[b-4wpfo8x974] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 600px) {
    .mobile-nav[b-4wpfo8x974] {
        display: none;
    }
}
/* /Layout/Company/CompanyNav.razor.rz.scp.css */
.user-info[b-do8uyrcsdl] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-do8uyrcsdl] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0078DC;
}

.menu-overlay[b-do8uyrcsdl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 999;
    opacity: 0.5;
    animation: fadeIn 0.3s ease forwards;
}
/* /Layout/Company/CompanyNavItems.razor.rz.scp.css */
hr[b-q2ybwnbk5l] {
    margin: -4px 0;
    min-height: 1px;
}

.justified-div[b-q2ybwnbk5l] {
    display: none;
}

.quick-links[b-q2ybwnbk5l] {
    display: none;
}

@media (min-width: 600px) {
    .justified-div[b-q2ybwnbk5l] {
        display: block;
        margin-top: auto;
    }
    
    .quick-links[b-q2ybwnbk5l] {
        display: block;
    }
}
/* /Layout/CompanyLayout.razor.rz.scp.css */
.app-container[b-7w2mr2065c] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background-page);
}

.main-section[b-7w2mr2065c] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@media (max-width: 1023px) {
    .app-container[b-7w2mr2065c] {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .app-container[b-7w2mr2065c] {
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
    }

    .main-section[b-7w2mr2065c] {
        flex: 1;
        min-height: 0;
    }

    .main-content[b-7w2mr2065c] {
        padding-bottom: 16px;
        min-height: 0;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-mbo1e0m64c] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mbo1e0m64c] {
    flex: 1;
}

.sidebar[b-mbo1e0m64c] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mbo1e0m64c] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mbo1e0m64c]  a, .top-row[b-mbo1e0m64c]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mbo1e0m64c]  a:hover, .top-row[b-mbo1e0m64c]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mbo1e0m64c]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mbo1e0m64c] {
        justify-content: space-between;
    }

    .top-row[b-mbo1e0m64c]  a, .top-row[b-mbo1e0m64c]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mbo1e0m64c] {
        flex-direction: row;
    }

    .sidebar[b-mbo1e0m64c] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mbo1e0m64c] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mbo1e0m64c]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mbo1e0m64c], article[b-mbo1e0m64c] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavItem.razor.rz.scp.css */
.nav-item[b-2m5bcdez0k] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
}

.nav-button[b-2m5bcdez0k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
}

.old.company[b-2m5bcdez0k], .old.project[b-2m5bcdez0k], .old.error[b-2m5bcdez0k], .old.settings[b-2m5bcdez0k] {
    color: white;
}

.settings[b-2m5bcdez0k] {
    color: rgb(23, 23, 23);
}

.company[b-2m5bcdez0k] {
    color: #0078DC;
}

.project[b-2m5bcdez0k] {
    color: #7A5FFF;
}

.error[b-2m5bcdez0k] {
    color: #ff6663;
}

@media (min-width: 1024px) {
    .old.settings[b-2m5bcdez0k] {
        color: #0078DC;
    }

    .old.company[b-2m5bcdez0k] {
        color: #0078DC;
    }

    .old.project[b-2m5bcdez0k] {
        color: #7A5FFF;
    }

    .old.error[b-2m5bcdez0k] {
        color: #ff6663;
    }
}


.old[b-2m5bcdez0k] {
    width: 100%;
    padding: 4px;
    min-width: 80px;
}

.old.active[b-2m5bcdez0k] {
    color: white;
}

.old.active .icon[b-2m5bcdez0k] {
    background-color: transparent !important;
}

.old.active.company[b-2m5bcdez0k] {
    background-color: #0078DC !important;
}

.old.active.settings[b-2m5bcdez0k] {
    background-color: #0078DC; !important;
}

.old.active.project[b-2m5bcdez0k] {
    background-color: #7A5FFF !important;
}

.old.active.error[b-2m5bcdez0k] {
    color: #ff6663;
}

.old.active span[b-2m5bcdez0k] {
    font-weight: 500 !important;
}

.nav-button.active span[b-2m5bcdez0k] {
    font-weight: 700;
}

.nav-button.active .icon[b-2m5bcdez0k] {
    color: white;
}

.nav-button.active.company .icon[b-2m5bcdez0k] {
    background-color: #0078DC;
}

.nav-button.active.project .icon[b-2m5bcdez0k] {
    background-color: #7A5FFF;
}

.nav-button.active.error .icon[b-2m5bcdez0k] {
    color: #ff6663;
}

.nav-button .icon[b-2m5bcdez0k] {
    width: 60px;
    height: 34px;
    padding: 5px 18px;
    border-radius: 30px;
}

.nav-button span[b-2m5bcdez0k] {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 600px) {
    .nav-button[b-2m5bcdez0k] {
        gap: 16px;
        flex-direction: row;
        justify-content: start;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lqf92ef25m] {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-row[b-lqf92ef25m] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-lqf92ef25m] {
    font-size: 1.1rem;
}

.bi[b-lqf92ef25m] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-lqf92ef25m] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-lqf92ef25m] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-lqf92ef25m] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-lqf92ef25m] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-lqf92ef25m] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lqf92ef25m] {
        padding-bottom: 1rem;
    }

    .nav-item[b-lqf92ef25m]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-lqf92ef25m]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-lqf92ef25m]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lqf92ef25m] {
        display: none;
    }

    .collapse[b-lqf92ef25m] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-lqf92ef25m] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/Project/ProjectHeader.razor.rz.scp.css */
.hamburger-button-header[b-ryh1kt4m3t] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-right: 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-button-header:hover[b-ryh1kt4m3t] {
    background-color: #f5f5f5;
}

.hamburger-icon[b-ryh1kt4m3t] {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span[b-ryh1kt4m3t] {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.hamburger-icon span:nth-child(1)[b-ryh1kt4m3t] {
    top: 0px;
}

.hamburger-icon span:nth-child(2)[b-ryh1kt4m3t] {
    top: 8px;
}

.hamburger-icon span:nth-child(3)[b-ryh1kt4m3t] {
    top: 16px;
}

.hamburger-icon.open span:nth-child(1)[b-ryh1kt4m3t] {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2)[b-ryh1kt4m3t] {
    opacity: 0;
    left: -60px;
}

.hamburger-icon.open span:nth-child(3)[b-ryh1kt4m3t] {
    top: 8px;
    transform: rotate(-135deg);
}

.header-with-action[b-ryh1kt4m3t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: black;
}

.header-title[b-ryh1kt4m3t] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-title span[b-ryh1kt4m3t] {
    font-size: 16px;
    color: black;
}

.button[b-ryh1kt4m3t] {
    margin: -10px;
}

@media (min-width: 1024px) {
    .hamburger-button-header[b-ryh1kt4m3t] {
        display: none;
    }
}
/* /Layout/Project/ProjectMobileNav.razor.rz.scp.css */
.nav-item[b-q30v6jilj6] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 48px;
}

.nav-button[b-q30v6jilj6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    color: #7A5FFF;
}

.nav-button.active[b-q30v6jilj6] {
    background-color: #7A5FFF;
    color: white;
}

.nav-button svg[b-q30v6jilj6] {
    width: 22px;
    height: 22px;
}

.nav-button span[b-q30v6jilj6] {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}


.profile-pic[b-q30v6jilj6] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 600px) {
    .mobile-nav[b-q30v6jilj6] {
        display: none;
    }
}
/* /Layout/Project/ProjectNav.razor.rz.scp.css */
.user-info[b-da8ez2mdpo] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar[b-da8ez2mdpo] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0078DC;
}

.menu-overlay[b-da8ez2mdpo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 999;
    opacity: 0.5;
    animation: fadeIn 0.3s ease forwards;
}
/* /Layout/Project/ProjectNavItems.razor.rz.scp.css */
hr[b-j7djwkhf5a] {
    margin: -4px 0;
    min-height: 1px;
}

.justified-div[b-j7djwkhf5a] {
    display: none;
}

@media (min-width: 600px) {
    .justified-div[b-j7djwkhf5a] {
        display: block;
        margin-top: auto;
    }
}
/* /Layout/ProjectLayout.razor.rz.scp.css */
.app-container[b-wq1qw0uu1z] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background-page);
}

.app-body[b-wq1qw0uu1z] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@media (max-width: 1023px) {
    .app-container[b-wq1qw0uu1z] {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .app-container[b-wq1qw0uu1z] {
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
    }

    .app-body[b-wq1qw0uu1z] {
        flex: 1;
        min-height: 0;
    }

    .main-content[b-wq1qw0uu1z] {
        padding-bottom: 16px;
        min-height: 0;
    }
}
/* /Pages/AccountPage.razor.rz.scp.css */
.logout-button[b-rzavshm056] {
    width: 100%;
    padding: 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}
/* /Pages/Auth/LoginPage.razor.rz.scp.css */
.header-container[b-9gdlr2retj] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.header-container p[b-9gdlr2retj] {
    color: var(--color-font-disable);
}

.logo-image[b-9gdlr2retj] {
    width: 160px;
    flex-shrink: 0;
    margin: 16px auto 8px auto;
}

/* Formulario */
form[b-9gdlr2retj] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
    width: 100%;
}

form button[b-9gdlr2retj] {
    margin-top: 8px;
}

.error-message[b-9gdlr2retj] {
    color: #FF0000;
    font-size: 12px;
    margin-bottom: 4px;
}

.password-input[b-9gdlr2retj] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.password-input a[b-9gdlr2retj] {
    margin-left: auto;
}

.login-button:hover[b-9gdlr2retj] {
    background-color: #005FCC;
}

.register-text[b-9gdlr2retj] {
    display: block;
    margin: 16px auto;
}

a[b-9gdlr2retj] {
    color: var(--color-terciary);
}

.card[b-9gdlr2retj] {
    margin: auto;
    /*box-shadow: var(--box-shadow-elevation-4);*/
}

@media (min-width: 600px) {
    form[b-9gdlr2retj] {
        width: 480px;
    }

    .card[b-9gdlr2retj] {
        margin: 16vh auto 32px auto;
    }
}

.blur-circle[b-9gdlr2retj] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0d6efd 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none; /* Para que no interfiera con clics */
    z-index: -1; /* Detrás de todo el contenido */
}
/* /Pages/Auth/RecoverPasswordPage.razor.rz.scp.css */
.main-content[b-1kv1i1jbzw] {
    gap: 16px;
    text-align: center;
}

.main-content[b-1kv1i1jbzw]  input {
    padding: 8px;
}

h1[b-1kv1i1jbzw] {
    text-align: center;
}

@media (min-width: 600px) {
    .main-content[b-1kv1i1jbzw] {
        width: 500px;
        margin: auto;
    }
}
/* /Pages/Auth/Register.razor.rz.scp.css */
header[b-z7tlcoul1e] {
    display: flex;
    width: 100%;
    left: 0;
    top: 0;
    padding: 8px 16px;
}

header img[b-z7tlcoul1e] {
    height: 48px;
}

.language-selector[b-z7tlcoul1e] {
    position: relative;
}

.error-message[b-z7tlcoul1e] {
    color: #FF0000;
    font-size: 12px;
    margin-bottom: 4px;
}

.credentials-section[b-z7tlcoul1e] {
    background-color: #f5f9ff;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid #0078DC;
}

.password-requirements[b-z7tlcoul1e] {
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    color: #666;
}

.password-requirements p[b-z7tlcoul1e] {
    margin-bottom: 4px;
    font-weight: 500;
    color: #555;
}

.password-requirements ul[b-z7tlcoul1e] {
    margin: 0;
    padding-left: 20px;
}

.password-requirements li[b-z7tlcoul1e] {
    margin-bottom: 2px;
}

h2[b-z7tlcoul1e] {
    margin: 16px 0 14px 0;
}

[b-z7tlcoul1e] .input-group {
    margin: 16px 0;
}

.button[b-z7tlcoul1e] {
    margin-top: 32px;
    width: 100%;
}

.register-text[b-z7tlcoul1e] {;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 auto;
    gap: 2px;
}

.register-text .button[b-z7tlcoul1e] {
    margin: 0;
    width: auto;
}

@media (min-width: 600px) {
}
/* /Pages/Auth/ResetPasswordPage.razor.rz.scp.css */
.button[b-mhmlfi47sp] {
    width: 100%;
}

.page-container[b-mhmlfi47sp]  form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.input-container[b-mhmlfi47sp]  input {
    padding: 8px;
}

@media (min-width: 600px) {
    .page-container[b-mhmlfi47sp]  form {
        width: 420px;
    }
}
/* /Pages/EditAccountPage.razor.rz.scp.css */
.container[b-qm4m6if6yk] {
    margin: 0;
    padding: 0;
}

.form-group[b-qm4m6if6yk] {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

    .form-group label[b-qm4m6if6yk] {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: black;
        margin-bottom: 8px;
    }

.save-button[b-qm4m6if6yk] {
    width: 100%;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    margin-top: 4px;
    transition: background-color 0.2s;
    background-color: #0078DC;
    color: white;
    border: none;
}

.cancel-button[b-qm4m6if6yk] {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    color: #636366;
    text-align: center;
    margin-top: 32px;
    transition: background-color 0.2s;
}


[b-qm4m6if6yk] .validation-message {
    color: #E53935;
    font-size: 12px;
    margin-bottom: 8px;
    margin-top: 4px;
}

[b-qm4m6if6yk] .field-validation-error {
    color: #E53935;
    font-size: 12px;
    padding-left: 8px;
    padding-top: 2px;
}

[b-qm4m6if6yk] input, [b-qm4m6if6yk] textarea {
    padding: 20px 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
    color: black;
    box-sizing: border-box;
}

    [b-qm4m6if6yk] input::placeholder, [b-qm4m6if6yk] textarea::placeholder {
        color: #636363;
    }

.success-message[b-qm4m6if6yk] {
    background-color: #EDFFF3;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
}

/* Eliminar imagen */

.current-image-container[b-qm4m6if6yk] {
    margin-top: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.current-image-header[b-qm4m6if6yk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

    .current-image-header h3[b-qm4m6if6yk] {
        margin: 0;
        font-size: 16px;
    }

.task-image-container[b-qm4m6if6yk] {
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #fafafa;
}

.task-uploaded-image[b-qm4m6if6yk] {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.delete-image-button[b-qm4m6if6yk] {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    border: 1px solid #ff4c4c;
    color: #ff4c4c;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

    .delete-image-button:hover[b-qm4m6if6yk] {
        background-color: #ff4c4c;
        color: white;
    }

    .delete-image-button:disabled[b-qm4m6if6yk] {
        opacity: 0.6;
        cursor: not-allowed;
    }
/* /Pages/HomePage.razor.rz.scp.css */
.task-list[b-3k94qjqlnw] {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daily-title[b-3k94qjqlnw] {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.task-card[b-3k94qjqlnw] {
    background-color: var(--color-surface-elevation-4);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--box-shadow-elevation-4);
    cursor: pointer;
}

.flex-col[b-3k94qjqlnw] {
    flex: 1;
    margin-right: 10px;
}

.task-title[b-3k94qjqlnw] {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.task-details[b-3k94qjqlnw] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
}

.detail-item[b-3k94qjqlnw] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.progress-fill[b-3k94qjqlnw] {
    background-color: #0078DC;
    height: 100%;
    border-radius: 4px;
}

.progress-text[b-3k94qjqlnw] {
    text-align: right;
    font-size: 10px;
    color: #636363;
}

.no-data p[b-3k94qjqlnw] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.project-section[b-3k94qjqlnw] {
    padding: 0;
    margin-bottom: 8px;
}

.info-item[b-3k94qjqlnw] {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

@media (min-width: 600px) {
    .quick-links[b-3k94qjqlnw] {
        display: none;
    }
}

@media (min-width: 768px) {
    .tasks-overview-container[b-3k94qjqlnw] {
        grid-column: 1;
        width: 100%;
    }
}
/* /Pages/Member/CreateMember.razor.rz.scp.css */
.form-container[b-8bxy6gsut3] {
    display: flex;
    flex-direction: column;
}

.form-fields[b-8bxy6gsut3] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-8bxy6gsut3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label[b-8bxy6gsut3] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }

[b-8bxy6gsut3] input, [b-8bxy6gsut3] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-8bxy6gsut3] input::placeholder, [b-8bxy6gsut3] textarea::placeholder {
        color: #636363;
    }

.image-button-container[b-8bxy6gsut3] {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
}

.select-image-button[b-8bxy6gsut3] {
    padding: 20px 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    width: auto;
}

.styled-select[b-8bxy6gsut3] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F2F2F7;
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-size: 12px;
    width: 100%;
    color: black;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

    .styled-select option[b-8bxy6gsut3] {
        padding: 20px;
        font-size: 12px;
        background-color: #F2F2F7;
    }

.create-button[b-8bxy6gsut3] {
    width: 100%;
    padding: 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

    .create-button:disabled[b-8bxy6gsut3] {
        opacity: 0.7;
    }

.error-message[b-8bxy6gsut3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .error-message p[b-8bxy6gsut3] {
        margin-bottom: 8px;
        font-size: 12px;
        color: red;
        margin: 0;
    }

.success-message[b-8bxy6gsut3] {
    background-color: #ECF8FF;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
}
/* /Pages/Member/NewWorkerInfo.razor.rz.scp.css */
.info-container[b-m9ddxjhry6] {
    display: flex;
    flex-direction: column;
    padding: 0px;
    max-width: 600px;
    margin: 0 auto;
}

.info-card[b-m9ddxjhry6] {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-title[b-m9ddxjhry6] {
    font-size: 20px;
    color: black;
    margin-bottom: 8px;
    text-align: center;
}

.info-section[b-m9ddxjhry6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    align-items: center; 
    text-align: center; 
}

.info-group[b-m9ddxjhry6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

    .info-group label[b-m9ddxjhry6] {
        font-size: 12px;
        font-weight: 500;
        color: black;
        text-align: left;
    }

.info-value[b-m9ddxjhry6] {
    padding: 20px;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
    color: black;
    display: inline-block;
    min-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    text-align: left;
}

.worker-photo[b-m9ddxjhry6] {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin: 8px auto; 
    display: block; 
}

.error-message[b-m9ddxjhry6] {
    color: red;
    margin-bottom: 16px;
}


.return-button[b-m9ddxjhry6] {
    width: 100%;
    padding: 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}
.info-section p[b-m9ddxjhry6] {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    color: black;
    font-size:14;
}
/* /Pages/MembersPage.razor.rz.scp.css */
.display-none[b-ckv3qqx9pi] {
    display: none;
}

.display[b-ckv3qqx9pi] {
    width: 100%;
}

.workers-container[b-ckv3qqx9pi] {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.workers-container h2[b-ckv3qqx9pi] {
    display: none;
}

.worker-group[b-ckv3qqx9pi] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.no-data p[b-ckv3qqx9pi] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.btn[b-ckv3qqx9pi] {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-primary[b-ckv3qqx9pi] {
    background-color: #0078DC;
    border-color: #0078DC;
}

@media (min-width: 600px) {
    .workers-container[b-ckv3qqx9pi] {
        flex-direction: column;
        gap: 24px;
    }

    .workers-container h2[b-ckv3qqx9pi] {
        display: block;
    }

    .tab-buttons[b-ckv3qqx9pi] {
        display: none;
    }

    .display-none[b-ckv3qqx9pi], .display[b-ckv3qqx9pi] {
        display: block;
    }

    .worker-group[b-ckv3qqx9pi] {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* /Pages/Project/AddMember.razor.rz.scp.css */
.container[b-853ha3gtbs] {
    padding: 0;
    margin: 0;
}

.no-data p[b-853ha3gtbs] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.worker-group[b-853ha3gtbs] {
    border-radius: 16px;
    margin-bottom: 8px;
}

.worker-card[b-853ha3gtbs] {
    background-color: var(--color-principal-scope-surface-1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 8px;
    border: 1px solid var(--color-principal-scope-primary-light);
    box-shadow: var(--box-shadow-elevation-4);
    transition: background-color 0.2s ease;
}

.worker-info[b-853ha3gtbs] {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    gap: 6px;
    margin-bottom: 8px;
}

.worker-name[b-853ha3gtbs] {
    font-size: 12px;
    color: black;
}

.worker-actions[b-853ha3gtbs] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn[b-853ha3gtbs] {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-primary[b-853ha3gtbs] {
    width: 100%;
    padding: 20px;
    background-color: #7A5FFF;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    border-color: #7A5FFF;
}
    .btn-primary:disabled[b-853ha3gtbs] {
        opacity: 0.7;
    }

.btn-success[b-853ha3gtbs] {
    background-color: #7A5FFF;
    border-color: #7A5FFF;
}

/* Spinner de carga */
.loading-spinner[b-853ha3gtbs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.spinner[b-853ha3gtbs] {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #7A5FFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin-b-853ha3gtbs 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-853ha3gtbs {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/Project/AddMemberOfTask.razor.rz.scp.css */

    .main-content span[b-jayguymf3e] {
        font-size: 16px;
        color: black;
    }

.worker-group[b-jayguymf3e] {
    margin: 16px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.worker-card[b-jayguymf3e] {
    background-color: #F5F2FF;
    border-radius: 16px;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.worker-info[b-jayguymf3e] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 12px;
}

.worker-name[b-jayguymf3e] {
    font-size: 14px !important;
    color: #000 !important;
}

.worker-actions[b-jayguymf3e] {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap;
}

.btn-success[b-jayguymf3e] {
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    color: white;
    text-align: center;
    margin-top: 32px;
    transition: background-color 0.2s;
    background-color: #7A5FFF;
    border-color: #7A5FFF;
}

.alert-danger[b-jayguymf3e] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 16px;
    margin: 16px;
}

.cancel-button[b-jayguymf3e] {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    color: #636366;
    text-align: center;
    margin-top: 32px;
    transition: background-color 0.2s;
}
/* /Pages/Project/CreateProject.razor.rz.scp.css */
.form-container[b-1e0bsxhho5] {
    display: flex;
    flex-direction: column;
}

.form-fields[b-1e0bsxhho5] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-1e0bsxhho5] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-1e0bsxhho5] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }

[b-1e0bsxhho5] input, [b-1e0bsxhho5] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-1e0bsxhho5] input::placeholder, [b-1e0bsxhho5] textarea::placeholder {
        color: #636363;
    }

.create-button[b-1e0bsxhho5] {
    width: 100%;
    padding: 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

    .create-button:disabled[b-1e0bsxhho5] {
        opacity: 0.7;
    }

/* Mensaje de error */
.error-message[b-1e0bsxhho5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .error-message p[b-1e0bsxhho5] {
        margin-bottom: 8px;
        font-size: 12px;
        color: red;
        margin: 0;
    }


/* Estilos para el diálogo de confirmación */
.modal-backdrop[b-1e0bsxhho5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-dialog[b-1e0bsxhho5] {
    width: 90%;
    max-width: 350px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-content[b-1e0bsxhho5] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-message[b-1e0bsxhho5] {
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 14px;
    color: black;
}

.modal-buttons[b-1e0bsxhho5] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.modal-button[b-1e0bsxhho5] {
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

    .modal-button.create[b-1e0bsxhho5] {
        background-color: #0078DC;
        color: white;
    }

    .modal-button.cancel[b-1e0bsxhho5] {
        background-color: #F2F2F7;
        color: black;
    }

.success-message[b-1e0bsxhho5] {
    background-color: #ECF8FF;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
}
/* /Pages/Project/CreateTask.razor.rz.scp.css */
.form-container[b-5ozgblihxi] {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}

.form-fields[b-5ozgblihxi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-5ozgblihxi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-5ozgblihxi] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }

.days-container[b-5ozgblihxi] {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.day-button[b-5ozgblihxi] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #F2F2F7;
    user-select: none;
    font-weight: 500;
    cursor: pointer;
}

    .day-button.selected[b-5ozgblihxi] {
        background-color: #7A5FFF;
        color: white;
    }

[b-5ozgblihxi] input, [b-5ozgblihxi] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-5ozgblihxi] input::placeholder, [b-5ozgblihxi] textarea::placeholder {
        color: #636363;
    }

.create-button[b-5ozgblihxi] {
    width: 100%;
    padding: 20px;
    background-color: #7A5FFF;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

    .create-button:disabled[b-5ozgblihxi] {
        opacity: 0.7;
    }

/* Mensaje de error */
.error-message[b-5ozgblihxi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .error-message p[b-5ozgblihxi] {
        margin-bottom: 8px;
        font-size: 12px;
        color: red;
        margin: 0;
    }


/* Estilos para el diálogo de confirmación */
.modal-backdrop[b-5ozgblihxi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-dialog[b-5ozgblihxi] {
    width: 90%;
    max-width: 350px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-content[b-5ozgblihxi] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-message[b-5ozgblihxi] {
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 14px;
    color: black;
}

.modal-buttons[b-5ozgblihxi] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.modal-button[b-5ozgblihxi] {
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

    .modal-button.create[b-5ozgblihxi] {
        background-color: #7A5FFF;
        color: white;
    }

    .modal-button.cancel[b-5ozgblihxi] {
        background-color: #F2F2F7;
        color: black;
    }

.success-message[b-5ozgblihxi] {
    background-color: #F5F2FF;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
}
/* /Pages/Project/EditProjectInformationPage.razor.rz.scp.css */
.form-container[b-83qpnenebg] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    padding-bottom: 4rem;
}

.form-fields[b-83qpnenebg] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-83qpnenebg] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-83qpnenebg] {
    font-size: 12px;
    font-weight: 500;
    color: black;
}

[b-83qpnenebg] input, [b-83qpnenebg] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

[b-83qpnenebg] input::placeholder, [b-83qpnenebg] textarea::placeholder {
    color: #636363;
}

.buttons-container[b-83qpnenebg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 0 10px 20px 10px;
}

.save-button[b-83qpnenebg] {
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.2s;
    background-color: #7A5FFF;
    color: white;
    border: none;
    width: 100%;
    font-weight: 500;
}

.save-button:disabled[b-83qpnenebg] {
    opacity: 0.7;
}

.cancel-button[b-83qpnenebg] {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    color: #636366;
    text-align: center;
    transition: background-color 0.2s;
    width: 100%;
    font-weight: 500;
}

/* Mensaje de error */
.error-message[b-83qpnenebg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

.error-message p[b-83qpnenebg] {
    margin-bottom: 8px;
    font-size: 12px;
    color: red;
    margin: 0;
}
/* /Pages/Project/ProjectInformationPage.razor.rz.scp.css */
.project-info-container[b-26n6nbl91d] {
    padding: 0;
    max-width: 100%;
}

    .project-section button[b-26n6nbl91d] {
        background-color: #F5F2FF;
        border-radius: 16px;
    }

.project-sections[b-26n6nbl91d] {
    padding: 20px 20px;
}

.section-title[b-26n6nbl91d] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 8px;
}

.info-row[b-26n6nbl91d] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-value[b-26n6nbl91d] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
}

    .info-value svg[b-26n6nbl91d] {
        min-width: 16px;
        margin-top: 2px;
    }

.action-button[b-26n6nbl91d] {
    background-color: #7A5FFF;
    color: white;
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    border: none;
}

h2[b-26n6nbl91d] {
    font-size: 16px;
    font-weight: 500;
    margin: 24px 16px 16px 16px;
}

.worker-group[b-26n6nbl91d] {
    margin-bottom: 8px;
}

.worker-card[b-26n6nbl91d] {
    padding: 20px;
    margin-bottom: 8px;
}

.worker-info[b-26n6nbl91d] {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    gap: 6px;
}

.worker-details[b-26n6nbl91d] {
    display: flex;
    flex-direction: column !important;
    gap: 6px;
}

.worker-detail-row[b-26n6nbl91d] {
    display: flex;
    align-items: center !important;
    gap: 6px;
}

.worker-photo[b-26n6nbl91d] {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
}

.worker-name[b-26n6nbl91d] {
    font-size: 12px;
    color: black;
}

.info-card[b-26n6nbl91d] {
    padding: 0;
}

    .info-card p[b-26n6nbl91d] {
        font-size: 12px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 8px;
    }

.day-stats[b-26n6nbl91d] {
    margin-bottom: 8px;
}

    .day-stats h3[b-26n6nbl91d] {
        font-size: 12px;
        font-weight: 500;
        margin: 0 0 4px 0;
    }

.progress-text[b-26n6nbl91d] {
    text-align: right;
    font-size: 10px;
    color: #636363;
}

.progress-fill[b-26n6nbl91d] {
    background-color: #7A5FFF;
    height: 100%;
    border-radius: 4px;
}

.no-data p[b-26n6nbl91d] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

/* Mensaje de error */
.error-message[b-26n6nbl91d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .error-message p[b-26n6nbl91d] {
        margin-bottom: 8px;
        font-size: 12px;
        color: red;
        margin: 0;
    }
/* /Pages/Project/ProjectMembersPage.razor.rz.scp.css */
.tab-button.active[b-ol6v81485s] {
    background-color: #7A5FFF;
}

.display-none[b-ol6v81485s] {
    display: none;
}

.display[b-ol6v81485s] {
    width: 100%;
}

.workers-container[b-ol6v81485s] {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.workers-container h2[b-ol6v81485s] {
    display: none;
}

.worker-group[b-ol6v81485s] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.no-data p[b-ol6v81485s] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.btn[b-ol6v81485s] {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-primary[b-ol6v81485s] {
    background-color: #0078DC;
    border-color: #0078DC;
}

@media (min-width: 600px) {
    .workers-container[b-ol6v81485s] {
        flex-direction: column;
        gap: 24px;
    }

    .workers-container h2[b-ol6v81485s] {
        display: block;
    }

    .tab-buttons[b-ol6v81485s] {
        display: none;
    }

    .display-none[b-ol6v81485s], .display[b-ol6v81485s] {
        display: block;
    }

    .worker-group[b-ol6v81485s] {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* /Pages/Project/ProjectTasksPage.razor.rz.scp.css */
.tab-button.active[b-nrxgapamcv] {
    background-color: #7A5FFF;
}

.task-list[b-nrxgapamcv] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.display-none[b-nrxgapamcv] {
    display: none;
}

.display[b-nrxgapamcv] {
    width: 100%;
}

.projects-container[b-nrxgapamcv] {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

    .projects-container > div[b-nrxgapamcv] {
        flex: 1 1 30%; 
        min-width: 320px;
    }

.projects-container h2[b-nrxgapamcv] {
    display: none;
}

@media (min-width: 600px) {
    .projects-container h2[b-nrxgapamcv] {
        display: block;
    }

    .tab-buttons[b-nrxgapamcv] {
        display: none;
    }

    .display-none[b-nrxgapamcv], .display[b-nrxgapamcv] {
        display: block;
        width: 20%;
        min-width: 400px;
        max-width: 600px;
    }
}
/* /Pages/ProjectsPage.razor.rz.scp.css */
.display-none[b-pfpdtpdco1] {
    display: none;
}

.display[b-pfpdtpdco1] {
    width: 100%;
}

.projects-list[b-pfpdtpdco1] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.projects-container[b-pfpdtpdco1] {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.projects-container h2[b-pfpdtpdco1] {
    display: none;
}

@media (min-width: 600px) {
    .projects-container h2[b-pfpdtpdco1] {
        display: block;
    }

    .tab-buttons[b-pfpdtpdco1] {
        display: none;
    }

    .display-none[b-pfpdtpdco1], .display[b-pfpdtpdco1] {
        display: block;
        width: calc(50% - 4px);
    }
}
/* /Pages/QuickLinks.razor.rz.scp.css */
.action-buttons[b-ngalrvqzq6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-buttons .button-secondary[b-ngalrvqzq6] {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    min-height: auto;
}

@media (min-width: 768px) {
    .tasks-overview-container[b-ngalrvqzq6] {
        grid-column: 1;
        width: 100%;
    }

    .action-buttons[b-ngalrvqzq6] {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        gap: 8px;
        height: fit-content;
        width: 100%;
    }
}
/* /Pages/Subscription/GetSubscriptionPage.razor.rz.scp.css */
h1[b-v0o2k0nf0n] {
    margin-bottom: 32px;
    text-align: center;
}

h2[b-v0o2k0nf0n] {
    margin: 24px 0;
}
/* /Pages/Subscription/SubscriptionPage.razor.rz.scp.css */
.cards-container[b-ymej941u27] {
    padding: 8px 0 16px 0;
    justify-content: start;
}

.billing-stats p[b-ymej941u27] {
    margin: 0;
}
/* /Pages/Tasks/EditTaskPage.razor.rz.scp.css */
.form-container[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    padding-bottom: 4rem;
}

.form-fields[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-4wqv755hun] {
    font-size: 12px;
    font-weight: 500;
    color: black;
}

.days-container[b-4wqv755hun] {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.day-button[b-4wqv755hun] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #F2F2F7;
    user-select: none;
    font-weight: 500;
}

.day-button.selected[b-4wqv755hun] {
    background-color: #30B49F;
    color: white;
}

[b-4wqv755hun] input, [b-4wqv755hun] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-4wqv755hun] input::placeholder, [b-4wqv755hun] textarea::placeholder {
        color: #636363;
    }

.buttons-container[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 0 10px 20px 10px;
}

.save-button[b-4wqv755hun] {
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.2s;
    background-color: #30B49F;
    color: white;
    border: none;
    width: 100%;
    font-weight: 500;
}

    .save-button:disabled[b-4wqv755hun] {
        opacity: 0.7;
    }

.cancel-button[b-4wqv755hun] {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 14px;
    color: #636366;
    text-align: center;
    transition: background-color 0.2s;
    width: 100%;
    font-weight: 500;
}
/* Mensaje de error */
.error-message[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

.error-message p[b-4wqv755hun] {
    margin-bottom: 8px;
    font-size: 12px;
    color: red;
    margin: 0;
}

.workers-container[b-4wqv755hun] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.worker-card[b-4wqv755hun] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F2F2F7;
    border-radius: 8px;
    padding: 10px 15px;
}

.worker-info[b-4wqv755hun] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.worker-name[b-4wqv755hun] {
    font-size: 12px;
    font-weight: 500;
    color: black;
}

.worker-action[b-4wqv755hun] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.2s;
}
/* /Pages/Tasks/GeneralReportTask.razor.rz.scp.css */

/*Body*/
.form-container[b-n6zw258pb7] {
    display: flex;
    flex-direction: column;
}

.form-fields[b-n6zw258pb7] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-n6zw258pb7] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-n6zw258pb7] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }
    .form-group p[b-n6zw258pb7] {
        font-size: 12px;
        font-weight: 500;
        color: black;
        margin: 0;
    }

[b-n6zw258pb7] input, [b-n6zw258pb7] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-n6zw258pb7] input::placeholder, [b-n6zw258pb7] textarea::placeholder {
        color: #636363;
    }

.styled-select[b-n6zw258pb7] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F2F2F7;
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-size: 12px;
    width: 100%;
    color: black;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

    .styled-select option[b-n6zw258pb7] {
        padding: 20px;
        font-size: 12px;
        background-color: #F2F2F7;
    }

.checkbox-container[b-n6zw258pb7] {
    margin-top: 8px;
    margin-bottom: 8px;
}

.checkbox-label[b-n6zw258pb7] {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .checkbox-label input[type="checkbox"][b-n6zw258pb7] {
        width: 18px;
        height: 18px;
        margin: 0;
        padding: 0;
    }

    .checkbox-label span[b-n6zw258pb7] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }

.create-button[b-n6zw258pb7] {
    width: 100%;
    padding: 20px;
    background-color: #0078DC;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.create-button:disabled[b-n6zw258pb7] {
    opacity: 0.7;
}
/* /Pages/Tasks/ReportTask.razor.rz.scp.css */
.app-container[b-qfb3ml2mwp] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: white;
}

.nav-content[b-qfb3ml2mwp] {
    display: flex;
    align-items: center;
}

.header-with-action[b-qfb3ml2mwp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: black;
}

.header-title[b-qfb3ml2mwp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .header-title span[b-qfb3ml2mwp] {
        font-size: 16px;
        color: black;
    }
    
/*Body*/
.form-container[b-qfb3ml2mwp] {
    display: flex;
    flex-direction: column;
}

.form-fields[b-qfb3ml2mwp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-qfb3ml2mwp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label[b-qfb3ml2mwp] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }

[b-qfb3ml2mwp] input, [b-qfb3ml2mwp] textarea {
    padding: 20px;
    border: none;
    background-color: #F2F2F7;
    border-radius: 8px;
    font-size: 12px;
}

    [b-qfb3ml2mwp] input::placeholder, [b-qfb3ml2mwp] textarea::placeholder {
        color: #636363;
    }

.styled-select[b-qfb3ml2mwp] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #F2F2F7;
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-size: 12px;
    width: 100%;
    color: black;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

    .styled-select option[b-qfb3ml2mwp] {
        padding: 20px;
        font-size: 12px;
        background-color: #F2F2F7;
    }

.checkbox-container[b-qfb3ml2mwp] {
    margin-top: 8px;
    margin-bottom: 8px;
}

.checkbox-label[b-qfb3ml2mwp] {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .checkbox-label input[type="checkbox"][b-qfb3ml2mwp] {
        width: 18px;
        height: 18px;
        margin: 0;
        padding: 0;
    }

    .checkbox-label span[b-qfb3ml2mwp] {
        font-size: 12px;
        font-weight: 500;
        color: black;
    }
.create-button[b-qfb3ml2mwp] {
    width: 100%;
    padding: 20px;
    background-color: #30B49F;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    bottom: 0;
}

.create-button:disabled[b-qfb3ml2mwp] {
    opacity: 0.7;
}
/* /Pages/Tasks/ShowReportTask.razor.rz.scp.css */
/*Body*/
.form-container[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
}

.form-fields[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label[b-zs60hqtn26] {
        font-size: 16px;
        font-weight: 500;
        color: black;
    }

    .form-group p.info-value[b-zs60hqtn26] {
        padding: 20px;
        border: none;
        border-radius: 16px;
        font-size: 12px;
        background-color: var(--color-principal-scope-surface-1);
        border: 1px solid var(--color-principal-scope-primary-light);
        box-shadow: var(--box-shadow-elevation-4);
        transition: background-color 0.2s ease;
    }

.users-list[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-range[b-zs60hqtn26] {
    display: flex;
    justify-content: space-between;
    padding: 0;
    gap: 16px;
}

.date-block[b-zs60hqtn26] {
    width: 50%;
}

    .date-block h2[b-zs60hqtn26] {
        font-size: 16px;
        color: black;
        margin: 0 0 8px 0;
        font-weight: 500;
    }

    .date-block p.info-value[b-zs60hqtn26] {
        background-color: var(--color-principal-scope-surface-1);
        padding: 20px;
        border-radius: 16px;
        font-size: 12px;
        color: black;
        border: 1px solid var(--color-principal-scope-primary-light);
        box-shadow: var(--box-shadow-elevation-4);
        transition: background-color 0.2s ease;
    }

h2[b-zs60hqtn26] {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 8px 0;
    padding: 0;
    color: black;
}

.progress-overview[b-zs60hqtn26] {
    background-color: var(--color-principal-scope-surface-1);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--color-principal-scope-primary-light);
    box-shadow: var(--box-shadow-elevation-4);
    transition: background-color 0.2s ease;
}

.user-progress-section[b-zs60hqtn26] {
    margin-bottom: 8px;
}

.progress-by-day[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-progress[b-zs60hqtn26] {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative;
}

.day-date[b-zs60hqtn26] {
    font-size: 10px;
    color: #636363;
    margin-bottom: 8px;
}

.day-value[b-zs60hqtn26] {
    text-align: right;
    font-size: 10px;
    color: #636363;
}

.progress-fill[b-zs60hqtn26] {
    background-color: #30B49F;
    height: 100%;
    border-radius: 4px;
}

.no-data[b-zs60hqtn26] {
    font-size: 14px;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.report-section[b-zs60hqtn26] {
    padding: 0;
    margin-bottom: 16px;
}

.report-content[b-zs60hqtn26] {
    background-color: var(--color-principal-scope-surface-1);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--color-principal-scope-primary-light);
    box-shadow: var(--box-shadow-elevation-4);
    transition: background-color 0.2s ease;
}

    .report-content p[b-zs60hqtn26] {
        font-size: 12px;
        line-height: 1.4;
        color: black;
        margin: 0;
    }

.comment-text[b-zs60hqtn26] {
    font-size: 12px;
    line-height: 1.4;
    color: black;
}

.report-data[b-zs60hqtn26] {
    font-size: 14px;
    text-align: center;
    color: black;
    padding: 20px;
}

.action-button[b-zs60hqtn26] {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #30B49F;
    border: none;
    display: inline-block;
    outline: none;
    box-shadow: none;
}
/* /Pages/Tasks/TasksPage.razor.rz.scp.css */
/*Body*/

.task-sections[b-pzn79dy5f5],
.worker-group[b-pzn79dy5f5] {
    border-radius: 16px;
}

.task-sections[b-pzn79dy5f5],
.worker-card[b-pzn79dy5f5] {
    background-color: var(--color-surface-elevation-4);
    border-radius: 8px;
    border: 1px solid var(--color-principal-scope-primary-light);
    box-shadow: var(--box-shadow-elevation-4);
    transition: background-color 0.2s ease;
}

.worker-group .card[b-pzn79dy5f5] {
    margin-bottom: 8px;
}

.task-sections[b-pzn79dy5f5] {
    padding: 20px 20px;
    margin-bottom: 16px;
}

.section-title[b-pzn79dy5f5] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-top: 0;
    margin-bottom: 8px;
}

.info-row[b-pzn79dy5f5] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-value[b-pzn79dy5f5] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    line-height: 1.4;
}

    .info-value svg[b-pzn79dy5f5] {
        min-width: 16px;
        margin-top: 2px;
    }

h2[b-pzn79dy5f5] {
    font-size: 16px;
    font-weight: 500;
    margin: 8px 8px 8px 8px;
}

.days-info-container[b-pzn79dy5f5] {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.day-info-button[b-pzn79dy5f5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #F2F2F7;
    user-select: none;
    font-weight: 500;
    font-size: 10px;
}

    .day-info-button.selected[b-pzn79dy5f5] {
        background-color: #30B49F;
        color: white;
    }

.worker-group[b-pzn79dy5f5] {
    margin-bottom: 16px;
}

.worker-card[b-pzn79dy5f5] {
    padding: 20px;
    margin-bottom: 8px;
}

.worker-info[b-pzn79dy5f5] {
    display: flex;
    flex-direction: row;
    align-items: center !important;
    gap: 6px;
}

.worker-details[b-pzn79dy5f5] {
    display: flex;
    flex-direction: column !important;
    gap: 6px;
}

.worker-detail-row[b-pzn79dy5f5] {
    display: flex;
    align-items: center !important;
    gap: 6px;
}

.worker-photo[b-pzn79dy5f5] {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
}

.worker-name[b-pzn79dy5f5] {
    font-size: 12px;
    font-weight: 500;
    color: black;
}

.info-card[b-pzn79dy5f5] {
    padding: 0;
}

    .info-card p[b-pzn79dy5f5] {
        font-size: 12px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 8px;
    }

.day-stats[b-pzn79dy5f5] {
    margin-bottom: 8px;
}

    .day-stats h3[b-pzn79dy5f5] {
        font-size: 12px;
        font-weight: 500;
        margin: 0 0 4px 0;
    }

.progress-info[b-pzn79dy5f5] {
    width: 100%;
}

.progress-value[b-pzn79dy5f5] {
    text-align: right;
    font-size: 10px;
    color: #636363;
}

.progress-fill[b-pzn79dy5f5] {
    background: linear-gradient(90deg, #30B49F, #6FE3C2);
    height: 100%;
    border-radius: 4px;
}

.project-section[b-pzn79dy5f5] {
    border-radius: 16px;
    padding: 0;
    margin-bottom: 16px;
}

.project-section button[b-pzn79dy5f5] {
    background-color: #30B49F;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    padding: 20px 20px;
    font-size: 14px;
    font-weight: 500;
    color: black;
    text-align: left;
    box-sizing: border-box;
}

/* Mensaje de error */
.error-message[b-pzn79dy5f5] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    text-align: center;
}

    .error-message p[b-pzn79dy5f5] {
        margin-bottom: 8px;
        font-size: 12px;
        color: red;
        margin: 0;
    }

.register-activity-container[b-pzn79dy5f5], .add-comment-container[b-pzn79dy5f5] {
    padding: 0;
}

    .register-activity-container .task-sections[b-pzn79dy5f5] {
        padding: 0;
        overflow: hidden;
    }

.activity-form[b-pzn79dy5f5] {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

.activity-input[b-pzn79dy5f5],
.comment-input[b-pzn79dy5f5],
[b-pzn79dy5f5] .activity-input,
[b-pzn79dy5f5] .comment-input {
    margin-top: 10px;
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    height: 48px;
    font-size: 14px;
    color: #333;
}

.comment-input[b-pzn79dy5f5],
[b-pzn79dy5f5] .comment-input {
    padding: 16px;
    height: auto;
    min-height: 48px;
}

    .activity-input:focus[b-pzn79dy5f5],
    .comment-input:focus[b-pzn79dy5f5],
    [b-pzn79dy5f5] .activity-input:focus,
    [b-pzn79dy5f5] .comment-input:focus {
        outline: none;
        box-shadow: none;
    }

.activity-submit[b-pzn79dy5f5],
.comment-submit[b-pzn79dy5f5] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #30B49F;
    border: none;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.2s;
}

.comment-submit[b-pzn79dy5f5] {
    height: auto;
    min-height: 48px;
}

    .activity-submit:hover[b-pzn79dy5f5],
    .comment-submit:hover[b-pzn79dy5f5] {
        background-color: #F2F2F7;
    }

    .activity-submit svg[b-pzn79dy5f5],
    .comment-submit svg[b-pzn79dy5f5] {
        color: white;
    }

[b-pzn79dy5f5] .validation-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    position: relative;
    clear: both;
    width: 100%;
    text-align: left;
    padding-left: 16px;
}

.comment-form[b-pzn79dy5f5] {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin-bottom: 10px;
}

.add-comment-container[b-pzn79dy5f5] {
    margin-bottom: 10px;
}

.comment-card[b-pzn79dy5f5] {
    background-color: #F2F2F7;
    border-radius: 16px;
    padding: 20px !important;
    margin-bottom: 16px !important;
}

.comment-text[b-pzn79dy5f5] {
    font-size: 12px !important;
    color: black;
    margin-top: 4px !important;
    line-height: 1.4 !important;
}

.comment-timestamp[b-pzn79dy5f5] {
    font-size: 10px !important;
    color: #636363;
    margin-top: 8px !important;
}

.comment-area[b-pzn79dy5f5] {
    resize: none;
    min-height: 80px;
}

.add-image-container[b-pzn79dy5f5] {
    margin-bottom: 10px;
}

.image-upload-form[b-pzn79dy5f5] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.image-upload-actions[b-pzn79dy5f5] {
    margin-top: 12px;
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 6px;
}

.select-image-button[b-pzn79dy5f5],
.upload-image-button[b-pzn79dy5f5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    flex: 1;
}

.select-image-button[b-pzn79dy5f5] {
    background-color: #30B49F;
    color: white;
}

.upload-image-button[b-pzn79dy5f5] {
    background-color: #30B49F;
    color: white;
}

    .upload-image-button:disabled[b-pzn79dy5f5] {
        background-color: #F2F2F7;
        color: #666666;
    }

.submit-container[b-pzn79dy5f5] {
    display: flex;
    justify-content: right;
    margin-top: 12px;
}

.register-button[b-pzn79dy5f5] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* O el tamaño que prefieras */
    height: 48px; /* Ajusta la altura según el diseño */
    background-color: #30B49F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}


.success-message[b-pzn79dy5f5] {
    background-color: #EDFFF3;
    color: black;
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 500;
}

.image-preview-container[b-pzn79dy5f5] {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-header[b-pzn79dy5f5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.image-preview[b-pzn79dy5f5] {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fafafa;
}

.preview-image[b-pzn79dy5f5] {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.remove-image-button[b-pzn79dy5f5] {
    background: none;
    border: none;
    color: #ff4c4c;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}

    .remove-image-button:hover[b-pzn79dy5f5] {
        background-color: #ffeeee;
        border-radius: 4px;
    }

.spinner-small[b-pzn79dy5f5] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-b-pzn79dy5f5 1s linear infinite;
    margin-right: 10px;
}

.delete-task-button[b-pzn79dy5f5] {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .delete-task-button svg[b-pzn79dy5f5] {
        width: 16px;
        height: 16px;
        color: #30B49F;
    }

@keyframes spin-b-pzn79dy5f5 {
    to {
        transform: rotate(360deg);
    }
}

.floating-action-button[b-pzn79dy5f5] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #30B49F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-action-button:hover[b-pzn79dy5f5] {
    background-color: #006BBE;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.floating-action-button svg[b-pzn79dy5f5] {
    width: 24px;
    height: 24px;
}
/* /Pages/Tutorial/00FinalizacionDeTutorial.razor.rz.scp.css */
.app-container[b-5ju5fy0syc] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-5ju5fy0syc] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-5ju5fy0syc] {
    display: block;
    padding: 16px;
    flex-grow: 1;
    text-align: center;
    padding-top: 16px;
}

.button-container[b-5ju5fy0syc] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

    .button-container button[b-5ju5fy0syc] {
        background-color: var(--color-blue);
        padding: 16px;
        border-radius: 13px;
        color: white;
    }
/* /Pages/Tutorial/01WelcomeToCompany.razor.rz.scp.css */
.app-container[b-dzt99t95cx] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

h3[b-dzt99t95cx] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.app-content[b-dzt99t95cx] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-content p[b-dzt99t95cx] {
    display: block;
    flex-grow: 1;
    text-align: center;
    padding-top: 20vh;
}

.button-container[b-dzt99t95cx] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

.button-container button[b-dzt99t95cx] {
    background-color: var(--color-blue);
    padding: 16px;
    border-radius: 13px;
    color: white;
}
/* /Pages/Tutorial/01WelcomeToCompany01.razor.rz.scp.css */
.app-container[b-64vytjcbnt] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-64vytjcbnt] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-64vytjcbnt] {
    display: block;
    padding: 16px;
    flex-grow: 1;
    padding-top: 16px;
}

.button-container[b-64vytjcbnt] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

    .button-container button[b-64vytjcbnt] {
        background-color: var(--color-blue);
        padding: 16px;
        border-radius: 13px;
        color: white;
    }
/* /Pages/Tutorial/02WelcomeToHome.razor.rz.scp.css */
.background-image[b-82sam2tw8i] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-82sam2tw8i] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;

    position: absolute;
    bottom: 80px;
}

.dialog button[b-82sam2tw8i] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/03CreateProject01.razor.rz.scp.css */
.app-container[b-snanj8fx17] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-snanj8fx17] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-snanj8fx17] {
    display: block;
    flex-grow: 1;
    text-align: center;
    padding-top: 20vh;
}

.button-container[b-snanj8fx17] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

.button-container button[b-snanj8fx17] {
    background-color: var();
    padding: 16px;
    border-radius: 13px;
    color: white;
}
/* /Pages/Tutorial/03CreateProject02.razor.rz.scp.css */
.background-image[b-jv3s11rjv0] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-jv3s11rjv0] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-jv3s11rjv0] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/03CreateProject0201.razor.rz.scp.css */
.background-image[b-zbzel7w7ya] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-zbzel7w7ya] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 0px;
    left: calc(100vw / 2 + 4px);
}
/* /Pages/Tutorial/03CreateProject03.razor.rz.scp.css */
.background-image[b-26v7hxscx4] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-26v7hxscx4] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-26v7hxscx4] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/03CreateProject0301.razor.rz.scp.css */
.background-image[b-ledo1zmxmp] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-ledo1zmxmp] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: 8px;
    left: calc(100vw / 2 + 100px);
}
/* /Pages/Tutorial/03CreateProject04.razor.rz.scp.css */
.background-image[b-agulnho8h4] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-agulnho8h4] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-agulnho8h4] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/03CreateProject05.razor.rz.scp.css */
.background-image[b-uweye2f170] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-uweye2f170] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 16px;
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/03CreateProject06.razor.rz.scp.css */
.background-image[b-j2ferao60w] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-j2ferao60w] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: calc(100vh / 2 - 34px);
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/03CreateProject07.razor.rz.scp.css */
.background-image[b-fc0ggergz3] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-fc0ggergz3] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-fc0ggergz3] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker01.razor.rz.scp.css */
.app-container[b-73nigaaxu1] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-73nigaaxu1] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-73nigaaxu1] {
    display: block;
    flex-grow: 1;
    text-align: center;
    padding-top: 20vh;
}

.button-container[b-73nigaaxu1] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

.button-container button[b-73nigaaxu1] {
    background-color: var(--color-blue);
    padding: 16px;
    border-radius: 13px;
    color: white;
}
/* /Pages/Tutorial/04CreateWorker02..razor.rz.scp.css */
.background-image[b-4101a2uhzk] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-4101a2uhzk] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-4101a2uhzk] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker0201..razor.rz.scp.css */
.background-image[b-lxzpdqjva0] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-lxzpdqjva0] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 0px;
    left: calc(100vw / 2 - 76px);
}
/* /Pages/Tutorial/04CreateWorker03..razor.rz.scp.css */
.background-image[b-o9kqhtm05u] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-o9kqhtm05u] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-o9kqhtm05u] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker0301..razor.rz.scp.css */
.background-image[b-sch97xh1zu] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-sch97xh1zu] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: 8px;
    left: calc(100vw / 2 + 100px);
}
/* /Pages/Tutorial/04CreateWorker04..razor.rz.scp.css */
.background-image[b-ybbhkjulca] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-ybbhkjulca] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-ybbhkjulca] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker05.razor.rz.scp.css */
.background-image[b-i6rubqg062] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-i6rubqg062] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-i6rubqg062] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker0501.razor.rz.scp.css */
.background-image[b-mtywumdq4s] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-mtywumdq4s] {
    display: block;
    background-color: transparent;
    width: 240px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: 8px;
    left: calc(100vw / 2 - 120px - 42px);
    top: calc(100vh / 2 - 34px);
}
/* /Pages/Tutorial/04CreateWorker06.razor.rz.scp.css */
.background-image[b-zpupkla5ga] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-zpupkla5ga] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
}

.dialog button[b-zpupkla5ga] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker07.razor.rz.scp.css */
.background-image[b-wcp9uyram5] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-wcp9uyram5] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 16px;
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/04CreateWorker08.razor.rz.scp.css */
.background-image[b-00hc7da65l] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-00hc7da65l] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-00hc7da65l] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/04CreateWorker0801.razor.rz.scp.css */
.background-image[b-9vr7sfmg1l] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-9vr7sfmg1l] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 16px;
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/04CreateWorker09.razor.rz.scp.css */
.background-image[b-hpem1u8phi] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-hpem1u8phi] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-hpem1u8phi] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/05AddWorker2Project01.razor.rz.scp.css */
.app-container[b-xlehy608bs] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-xlehy608bs] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-xlehy608bs] {
    display: block;
    flex-grow: 1;
    text-align: center;
    padding-top: 20vh;
}

.button-container[b-xlehy608bs] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

.button-container button[b-xlehy608bs] {
    background-color: var(--color-blue);
    padding: 16px;
    border-radius: 13px;
    color: white;
}
/* /Pages/Tutorial/05AddWorker2Project02.razor.rz.scp.css */
.background-image[b-fex9ha9z0q] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-fex9ha9z0q] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    background-color: var(--color-orange);
    margin: 8px;
    padding: 16px;
    color: white;
    border-radius: 13px;
    position: absolute;
    bottom: 80px;
}

.dialog button[b-fex9ha9z0q] {
    background-color: white;
    padding: 8px;
    border-radius: 13px;
    color: var(--color-orange);
}
/* /Pages/Tutorial/05AddWorker2Project0201.razor.rz.scp.css */
.background-image[b-t07c9h7ccx] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-t07c9h7ccx] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 0px;
    left: calc(100vw / 2 + 4px);
}
/* /Pages/Tutorial/05AddWorker2Project0301.razor.rz.scp.css */
.background-image[b-0zf95gdont] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-0zf95gdont] {
    display: block;
    background-color: transparent;
    border-color: var(--color-orange);
    border-width: 6px;
    position: absolute;
    top: 8px;

    border-radius: 13px;
    width: 280px;
    height: 100px;
    left: calc(100vw / 2 - 120px - 42px);
    top: calc(100vh / 2 - 250px);
}
/* /Pages/Tutorial/05AddWorker2Project04.razor.rz.scp.css */
.background-image[b-5g3v6uvy75] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-5g3v6uvy75] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/05AddWorker2Project0401.razor.rz.scp.css */
.background-image[b-ufag1974vj] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-ufag1974vj] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 0px;
    left: calc(100vw / 2 - 34px);
}
/* /Pages/Tutorial/05AddWorker2Project05.razor.rz.scp.css */
.background-image[b-bzh4rp0o78] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-bzh4rp0o78] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: 8px;
    left: calc(100vw / 2 + 100px);
}
/* /Pages/Tutorial/05AddWorker2Project06.razor.rz.scp.css */
.background-image[b-8rqymv950n] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-8rqymv950n] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/05AddWorker2Project0601.razor.rz.scp.css */
.background-image[b-eh3rmhsfm5] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-eh3rmhsfm5] {
    display: block;
    background-color: transparent;
    width: 240px;
    height: 8vh;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: calc(100vh / 2 - 280px);
    left: calc(100vw / 2 - 160px);
}
/* /Pages/Tutorial/05AddWorker2Project07.razor.rz.scp.css */
.background-image[b-x05ml2u818] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-x05ml2u818] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/06CreateTaskt01.razor.rz.scp.css */
.app-container[b-evtfamzq1m] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 100vh;
}

.header-container[b-evtfamzq1m] {
    display: block;
    margin: 16px 24px;
    text-align: center;
}

.content-container[b-evtfamzq1m] {
    display: block;
    flex-grow: 1;
    text-align: center;
    padding-top: 20vh;
}

.button-container[b-evtfamzq1m] {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding: 16px 0;
    gap: 16px;
}

.button-container button[b-evtfamzq1m] {
    background-color: var(--color-blue);
    padding: 16px;
    border-radius: 13px;
    color: white;
}
/* /Pages/Tutorial/06CreateTaskt02.razor.rz.scp.css */
.background-image[b-v2llcffuzn] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-v2llcffuzn] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/06CreateTaskt0201.razor.rz.scp.css */
.background-image[b-ugjr8ddsfq] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-ugjr8ddsfq] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 0;
    left: calc(100vw / 2 - 148px);
}
/* /Pages/Tutorial/06CreateTaskt03.razor.rz.scp.css */
.background-image[b-73ig406n8s] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-73ig406n8s] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/06CreateTaskt0301.razor.rz.scp.css */
.background-image[b-chnfv9f7tn] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-chnfv9f7tn] {
    display: block;
    background-color: transparent;
    width: 68px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: 8px;
    left: calc(100vw / 2 + 100px);
}
/* /Pages/Tutorial/06CreateTaskt04.razor.rz.scp.css */
.background-image[b-r10f6d2ufm] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-r10f6d2ufm] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/06CreateTaskt05.razor.rz.scp.css */
.background-image[b-4bnz1rqk8d] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dialog[b-4bnz1rqk8d] {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: orange;
    margin: 8px;
    padding: 16px;
    bottom: 16px;
}
/* /Pages/Tutorial/06CreateTaskt0501.razor.rz.scp.css */
.background-image[b-dc3rlrcegc] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-dc3rlrcegc] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    bottom: 16px;
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/06CreateTaskt06.razor.rz.scp.css */
.background-image[b-6fo1dc5sg0] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-6fo1dc5sg0] {
    display: block;
    background-color: transparent;
    width: 300px;
    height: 68px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: calc(100vh / 2 - 34px);
    left: calc(100vw / 2 - 150px);
}
/* /Pages/Tutorial/06CreateTaskt0601.razor.rz.scp.css */
.background-image[b-xxbhsydbkl] {
    display: block;
    background-color: var(--color-blue);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.clickme[b-xxbhsydbkl] {
    display: block;
    background-color: transparent;
    width: 240px;
    height: 40px;
    border-color: var(--color-orange);
    border-radius: 100px;
    border-width: 6px;
    position: absolute;
    top: calc(100vh / 2 - 40px);
    left: calc(100vw / 2 - 150px);
}
