/* _content/Jobby/Pages/ChatsPage.razor.rz.scp.css */
/* =========================
   LAYOUT GENERAL
========================= */
.chat-page[b-64ngwem2nf] {
    width: 100%;
    height: 80dvh;
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f5f7fb;
}

.chat-content[b-64ngwem2nf],
.listchat-content[b-64ngwem2nf] {
    display: flex;
    justify-content: center;
}

/* =========================
   CHAT BOX
========================= */
.chat-box[b-64ngwem2nf] {
    width: 420px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow: hidden;
}

/* =========================
   HEADER
========================= */
.chat-header[b-64ngwem2nf] {
    height: 70px;
    background: linear-gradient(135deg, #4466c4, #5b7cfa);
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
}

    .chat-header span[b-64ngwem2nf] {
        font-weight: 600;
        font-size: 16px;
    }

.profile-photo[b-64ngwem2nf] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 12px;
    border: 2px solid rgba(255,255,255,.5);
}

.back-btn[b-64ngwem2nf] {
    display: none;
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;
}

.header-info[b-64ngwem2nf] {
    display: flex;
    flex-direction: column;
}

.user-status[b-64ngwem2nf] {
    font-size: 12px;
    margin-top: 2px;
}

    .user-status.online[b-64ngwem2nf] {
        color: #b4f5c5;
    }

    .user-status[b-64ngwem2nf]::before {
        content: "●";
        margin-right: 4px;
    }


/* =========================
   BODY
========================= */
.chat-body[b-64ngwem2nf] {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f2f4f8;
}

    .chat-body[b-64ngwem2nf]::-webkit-scrollbar {
        width: 0;
    }

/* =========================
   MENSAJES
========================= */
.box-send[b-64ngwem2nf],
.box-receive[b-64ngwem2nf] {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.box-send[b-64ngwem2nf] {
    background: #ffffff;
    color: #333;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.box-receive[b-64ngwem2nf] {
    background: #4466c4;
    color: #fff;
    border-bottom-left-radius: 4px;
}

/* =========================
   FOOTER
========================= */
.chat-foot[b-64ngwem2nf] {
    height: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-top: 1px solid #e4e6eb;
}

.foot-content[b-64ngwem2nf] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .foot-content input[b-64ngwem2nf] {
        flex: 1;
        height: 40px;
        border-radius: 20px;
        border: none;
        background: #f0f2f5;
        padding: 0 15px;
        outline: none;
        font-size: 14px;
    }

    .foot-content i[b-64ngwem2nf] {
        font-size: 22px;
        color: #4466c4;
        cursor: pointer;
        transition: transform .2s;
    }

        .foot-content i:hover[b-64ngwem2nf] {
            transform: scale(1.15);
        }

/* =========================
   LISTA DE CHATS
========================= */
.chat-notification-content[b-64ngwem2nf] {
    width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow-y: auto;
}

    .chat-notification-content h5[b-64ngwem2nf] {
        margin-bottom: 15px;
    }

.chat-notification-box[b-64ngwem2nf] {
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}

    .chat-notification-box:hover[b-64ngwem2nf] {
        background: #f0f2f5;
    }

.chat-notification-header[b-64ngwem2nf] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-notification-photo[b-64ngwem2nf] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4466c4;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .chat-page[b-64ngwem2nf] {
        flex-direction: column;
        height: calc(100dvh - 120px);
        padding: 0;
    }

    /* Estado inicial: solo lista */
    .chat-content[b-64ngwem2nf] {
        display: none;
        width: 100%;
        height: 100%;
    }

    .listchat-content[b-64ngwem2nf] {
        width: 100%;
        height: 100%;
    }

    /* CUANDO SE ABRE UN CHAT */
    .mobile-chat-open .chat-content[b-64ngwem2nf] {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .mobile-chat-open .listchat-content[b-64ngwem2nf] {
        display: none;
    }

    .chat-box[b-64ngwem2nf] {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chat-body[b-64ngwem2nf] {
        flex: 1;
        overscroll-behavior: contain;
    }

    .chat-notification-content[b-64ngwem2nf] {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .back-btn[b-64ngwem2nf] {
        display: block;
        color: white;
    }
}
/* _content/Jobby/Pages/CompleteDocs.razor.rz.scp.css */
/*.complete-content {
    width: 600px;
    padding: 20px 0px;
    background-color: white;
    box-shadow: 0px 0px 8px rgba(68, 114, 196, .4);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

label {
    cursor: pointer;
    background-color: rgb(21, 21, 117);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

button {
    width: 400px;
    height: 50px;
    border-radius: 25px;
    background-color: rgb(51, 61, 157);
    color: white;
    border: none;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 15px;
}
*/
/* _content/Jobby/Pages/Contactme.razor.rz.scp.css */
main[b-vaps6ds1mb] {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.searchbox[b-vaps6ds1mb] {
    width: 100%;
    min-height: 400px; /* Usamos una altura mínima en lugar de 50% */
    background-color: rgb(68, 114, 196);
    display: flex; /* Activa Flexbox para centrar todo */
    align-items: center;
    justify-content: center;
}

.categoriesbox[b-vaps6ds1mb] {
    width: 100%;
    flex: 1;
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    padding-bottom: 50px; /* Margen inferior para que las cajas no toquen el borde de la pantalla */
}

.contactcontent[b-vaps6ds1mb] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .contactcontent input[b-vaps6ds1mb] {
        width: 40em;
        height: 3em;
        border: none;
        border-radius: 10px;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        margin-top: 20px;
        padding-left: 20px;
    }

input:focus[b-vaps6ds1mb] {
    outline: none;
}

.contactcontent h2[b-vaps6ds1mb] {
    font-size: 42px;
    color: white;
}

.icon[b-vaps6ds1mb] {
    cursor: pointer;
    font-size: 30px;
    color: rgb(140, 140, 140);
    position: absolute;
    top: 43%;
    right: 3%;
}

.categories[b-vaps6ds1mb] {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding-top: 4%;
}

.categorie[b-vaps6ds1mb] {
    cursor: pointer;
    width: 200px;
    height: 200px;
    background-color: white;
    border: 3px solid rgb(250, 250, 250);
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .3);
    margin-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.categorie1:hover[b-vaps6ds1mb] {
    color: white;
    background-color: rgb(68, 196, 111);
    border: none;
}

.categorie2:hover[b-vaps6ds1mb] {
    color: white;
    background-color: rgb(151, 68, 196);
    border: none;
}

.categorie3:hover[b-vaps6ds1mb] {
    color: white;
    background-color: rgb(68, 116, 196);
    border: none;
}

.categorie4:hover[b-vaps6ds1mb] {
    color: white;
    background-color: rgb(68, 196, 196);
    border: none;
}

.categorie:last-child[b-vaps6ds1mb] {
    margin-right: 0px;
}

.categorie i[b-vaps6ds1mb] {
    font-size: 68px;
    margin-bottom: 3%;
}

@media only screen and (max-width: 768px) {

    .contactcontent[b-vaps6ds1mb] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px; /* Añade margen lateral para que el texto no toque los bordes */
        /* Las propiedades position: absolute, top, right y transform fueron eliminadas */
    }

    .contactcontent h2[b-vaps6ds1mb] {
        font-size: 28px;
        color: white;
    }

    .contactcontent input[b-vaps6ds1mb] {
        width: 22em;
        height: 3em;
        border: none;
        border-radius: 10px;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
        margin-top: 20px;
        padding-left: 20px;
    }

    .categories[b-vaps6ds1mb] {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 4%;
    }

    .categorie[b-vaps6ds1mb] {
        cursor: pointer;
        width: 200px;
        height: 200px;
        background-color: white;
        border: 3px solid rgb(250, 250, 250);
        border-radius: 10px;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, .3);
        margin-right: 0px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .categoriesbox[b-vaps6ds1mb] {
        width: 100%;
        /* height: 50%;  <-- ELIMINA ESTA LÍNEA */
        flex: 1; /* <-- AGREGA ESTA LÍNEA */
        background-color: white;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px; /* Opcional: Para darle un respiro al final y que la última caja no quede pegada al borde */
    }

    .searchbox[b-vaps6ds1mb] {
        width: 100%;
        min-height: 300px; /* Usamos una altura mínima en vez de porcentaje */
        background-color: rgb(68, 114, 196);
        display: flex; /* Activa Flexbox para centrar contenido */
        align-items: center;
        justify-content: center;
    }

    .icon[b-vaps6ds1mb] {
        cursor: pointer;
        font-size: 22px;
        color: rgb(140, 140, 140);
        position: absolute;
        top: 47%;
        right: 3%;
    }

    .categorie1[b-vaps6ds1mb] {
        color: white;
        background-color: rgb(68, 196, 111);
        border: none;
    }

    .categorie2[b-vaps6ds1mb] {
        color: white;
        background-color: rgb(151, 68, 196);
        border: none;
    }

    .categorie3[b-vaps6ds1mb] {
        color: white;
        background-color: rgb(68, 116, 196);
        border: none;
    }

    .categorie4[b-vaps6ds1mb] {
        color: white;
        background-color: rgb(68, 196, 196);
        border: none;
    }
}
/* _content/Jobby/Pages/Dashboard.razor.rz.scp.css */
.main-content[b-dzc7bfzdo7] {
    width: 100%;
    height: 80dvh;
    /*background-color: black;*/
    display: flex;
    flex-direction: row;
}

.dashboard-content[b-dzc7bfzdo7] {
    width: 50%;
    height: 100%;
    /*background-color: antiquewhite;*/
    display: flex;
    flex-direction: column;
}

.dashboard-content2[b-dzc7bfzdo7] {
    width: 50%;
    height: 100%;
    /*background-color: antiquewhite;*/
    display: flex;
    flex-direction: column;
}

.dashboard-summary[b-dzc7bfzdo7] {
    width: 100%;
    height: 30%;
    /*background-color: black;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

.summary[b-dzc7bfzdo7] {
    /*width: 150px;*/
    /*height: 180px;*/
    padding: 10px 20px;
    background-color: rgba(68, 114, 196, .6);
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    margin-right: 30px;
}

    .summary:last-child[b-dzc7bfzdo7] {
        margin-right: 0px;
    }

    .summary:hover[b-dzc7bfzdo7] {
        background-color: rgb(68, 114, 196);
        color: white;
    }

.summary-percent[b-dzc7bfzdo7] {
    width: 60px;
    height: 60px;
    font-size: .9em;
    border-radius: 40px;
    background-color: rgb(68, 114, 196);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 20px;
}

/*PARTE DEL UPCOMING*/
.upcoming-services[b-dzc7bfzdo7] {
    width: 100%;
    height: 70%;
    /*background-color: gray;*/
}

.upcoming-services-header[b-dzc7bfzdo7] {
    width: 100%;
    height: 20%;
    /*background-color: blue;*/
    display: flex;
    align-items: center;
}

    .upcoming-services-header span[b-dzc7bfzdo7] {
        font-size: 22px;
    }

.upcoming-services-content[b-dzc7bfzdo7] {
    width: 87%;
    height: 500px;
    overflow-y: scroll;
    /*background-color: antiquewhite;*/
}

    .upcoming-services-content[b-dzc7bfzdo7]::-webkit-scrollbar {
        display: none;
    }

.upcoming-services-box[b-dzc7bfzdo7] {
    width: 100%;
    height: 80px;
    /*background-color: aqua;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    color: rgb(60, 60, 60);
    cursor: pointer;
}

    .upcoming-services-box:hover[b-dzc7bfzdo7] {
        background-color: rgba(68, 114, 196, .6);
        border-radius: 15px;
        padding: 0px 20px;
    }

.upcoming-services-index[b-dzc7bfzdo7] {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: rgb(68, 114, 196);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 30px;
}

/*SEGUNDA SESION*/

.monthly-profit[b-dzc7bfzdo7] {
width: 100%;
height: 40%;
/*background-color: black;*/
}

.monthly-profit-content[b-dzc7bfzdo7] {
    width: 700px;
    height: 180px;
    background-color: rgb(241, 241, 241);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
}

.profit-box[b-dzc7bfzdo7] {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.warranty-logo[b-dzc7bfzdo7] {
    width: 80px;
    height: 80px;
    background-color: rgb(68, 114, 196);
    margin-right: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    color: white;
}

.weekly-profit[b-dzc7bfzdo7] {
    width: 100%;
    height: 20%;
    /*background-color: black;*/
    padding-left: 10px;
}

.weekly-profit-content[b-dzc7bfzdo7] {
    width: 150px;
    height: 150px;
    background-color: rgb(241, 241, 241);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.weekly-profit-box[b-dzc7bfzdo7] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profit-logo[b-dzc7bfzdo7] {
    width: 50px;
    height: 50px;
    background-color: rgb(68, 114, 196);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
}

.row[b-dzc7bfzdo7] {
    display: flex;
    flex-direction: row;
}

.margin-r[b-dzc7bfzdo7]{
    margin-right: 30px;
}

.customers-feedback[b-dzc7bfzdo7] {
    width: 100%;
    height: 40%;
    /*background-color: black;*/
    padding-top: 30px;
}

.customers-feedback1[b-dzc7bfzdo7] {
    display: none
}

.customers-feedback-content[b-dzc7bfzdo7] {
    width: 700px;
    height: 270px;
    background-color: rgb(241, 241, 241);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: auto;
}

    .customers-feedback-content[b-dzc7bfzdo7]::-webkit-scrollbar {
        width: 0px;
    }

.customers-feedback-box[b-dzc7bfzdo7] {
width: 100%;
height: 100px;
max-height: 100px;
border-bottom: solid 1px gray;
margin-bottom: 20px;
}

.customers-feedback-header[b-dzc7bfzdo7] {
display: flex;
flex-direction: row;
}

.customers-feedback-photo[b-dzc7bfzdo7] {
    width: 50px;
    height: 50px;
    background-color: rgb(68, 114, 196);
    border-radius: 30px;
    margin-right: 10px;
}

.customers-feedback-body[b-dzc7bfzdo7] {
padding-left: 60px;
padding-top: 15px;
}

.finance[b-dzc7bfzdo7]{
    display: none;
}

@media only screen and (max-width: 768px) {
    .upcoming-services[b-dzc7bfzdo7]{
        display: none;
    }

    .main-content[b-dzc7bfzdo7] {
        width: 100%;
        height: 100%;
        /*background-color: black;*/
        display: flex;
        flex-direction: column;
    }

    .dashboard-content[b-dzc7bfzdo7] {
        width: 100%;
        height: 100%;
        /*background-color: antiquewhite;*/
        display: flex;
        flex-direction: column;
    }

    .dashboard-content2[b-dzc7bfzdo7] {
        display: none;
    }

    .dashboard-summary[b-dzc7bfzdo7] {
        width: 100%;
        height: 30%;
        /*background-color: black;*/
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-bottom: 40px;
    }

    .summary[b-dzc7bfzdo7] {
        width: 100%;
        /*height: 180px;*/
        padding: 10px 20px;
        background-color: rgba(68, 114, 196, .6);
        cursor: pointer;
        border-radius: 15px;
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        text-align: center;
        font-weight: bold;
        margin-right: 0px;
        margin-bottom: 10px;
    }

        .summary:last-child[b-dzc7bfzdo7] {
            margin-right: 0px;
        }

        .summary:hover[b-dzc7bfzdo7] {
            background-color: rgb(68, 114, 196);
            color: white;
        }

    .summary-percent[b-dzc7bfzdo7] {
        width: 60px;
        height: 60px;
        font-size: .9em;
        border-radius: 40px;
        background-color: rgb(68, 114, 196);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        margin-right: 20px;
    }

    .finance[b-dzc7bfzdo7] {
        display: flex;
        background-color: rgb(68, 114, 196);
        color: white;
        padding: 5px 12px;
        border-radius: 15px;
    }

    .finance span[b-dzc7bfzdo7]{
        font-size: 13px;
        margin-left: 5px;
    }

    .customers-feedback1[b-dzc7bfzdo7] {
        width: 100%;
        height: 40%;
        /*background-color: black;*/
        padding-top: 10px;
        display: flex;
    }
}

/*************************************************************************************************************************************/

*[b-dzc7bfzdo7] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body[b-dzc7bfzdo7] {
    background-color: #f4f6f8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

header[b-dzc7bfzdo7] {
    background-color: #0066cc;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    header h1[b-dzc7bfzdo7] {
        font-size: 1.4rem;
    }

    header .filters[b-dzc7bfzdo7] {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    header select[b-dzc7bfzdo7], header input[b-dzc7bfzdo7], header button[b-dzc7bfzdo7] {
        padding: 0.5rem;
        border: none;
        border-radius: 6px;
        font-size: 0.9rem;
    }

    header button[b-dzc7bfzdo7] {
        background-color: #0052a3;
        color: white;
        cursor: pointer;
    }

main[b-dzc7bfzdo7] {
    flex: 1;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card[b-dzc7bfzdo7] {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

    .card h2[b-dzc7bfzdo7] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .card div[b-dzc7bfzdo7] {
        padding-top: 10px;
        padding-bottom: 10px;
    }

.summary-cards[b-dzc7bfzdo7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-card[b-dzc7bfzdo7] {
    background-color: #e8f1fd;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

    .summary-card h3[b-dzc7bfzdo7] {
        font-size: 0.95rem;
        color: #0052a3;
    }

    .summary-card p[b-dzc7bfzdo7] {
        font-size: 1.3rem;
        font-weight: bold;
        margin-top: 0.3rem;
    }

.table-container[b-dzc7bfzdo7] {
    overflow-x: auto;
}

table[b-dzc7bfzdo7] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th[b-dzc7bfzdo7], td[b-dzc7bfzdo7] {
    text-align: left;
    padding: 0.6rem;
    border-bottom: 1px solid #ddd;
}

th[b-dzc7bfzdo7] {
    background-color: #f1f1f1;
}

tr:hover[b-dzc7bfzdo7] {
    background-color: #f9f9f9;
}

footer[b-dzc7bfzdo7] {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    header[b-dzc7bfzdo7] {
        flex-direction: column;
        align-items: flex-start;
    }

        header h1[b-dzc7bfzdo7] {
            font-size: 1.2rem;
        }

        header .filters[b-dzc7bfzdo7] {
            width: 100%;
            justify-content: flex-start;
        }

    main[b-dzc7bfzdo7] {
        padding: 1rem;
        grid-template-columns: 1fr;
    }

    .summary-cards[b-dzc7bfzdo7] {
        grid-template-columns: 1fr;
    }

    table[b-dzc7bfzdo7] {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    header[b-dzc7bfzdo7] {
        padding: 1rem;
    }

    .summary-card p[b-dzc7bfzdo7] {
        font-size: 1.1rem;
    }

    th[b-dzc7bfzdo7], td[b-dzc7bfzdo7] {
        padding: 0.5rem;
    }
}
/* _content/Jobby/Pages/HistoryPage.razor.rz.scp.css */
/* =========================
   BASE
========================= */
.container[b-xfa4u9k7nt] {
    max-width: 1000px;
    margin: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.table-header[b-xfa4u9k7nt] {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #4466c4, #5b7cfa);
    color: white;
    display: flex;
    padding: 0 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.header-fields[b-xfa4u9k7nt] {
    flex: 1;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.row-content[b-xfa4u9k7nt] {
    max-height: 65dvh;
    overflow-y: auto;
}

    .row-content[b-xfa4u9k7nt]::-webkit-scrollbar {
        width: 0;
    }

.status-badge[b-xfa4u9k7nt] {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .status-badge[b-xfa4u9k7nt]::before {
        content: "●";
        font-size: 10px;
    }

/* ESTADOS */
.status-completed[b-xfa4u9k7nt] {
    background: #e6f7ef;
    color: #1e8e5a;
}

.status-cancelled[b-xfa4u9k7nt] {
    background: #fdecea;
    color: #d93025;
}

.status-pending[b-xfa4u9k7nt] {
    background: #fff7e6;
    color: #f9ab00;
}

.status-default[b-xfa4u9k7nt] {
    background: #eaeaea;
    color: #555;
}


/* =========================
   ROW DESKTOP
========================= */
.table-row[b-xfa4u9k7nt] {
    width: 100%;
    min-height: 70px;
    background: #ffffff;
    display: flex;
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.row-fields[b-xfa4u9k7nt] {
    flex: 1;
    display: flex;
    align-items: center;
}

/* =========================
   EXPANDIBLE (CORRECTO)
========================= */
.expandable[b-xfa4u9k7nt] {
    cursor: pointer;
    transition: box-shadow .2s;
}

    .expandable:hover[b-xfa4u9k7nt] {
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

/* CONTENEDOR DE FILA */
.table-row[b-xfa4u9k7nt] {
    flex-wrap: wrap; /* 🔑 CLAVE */
}

/* DETALLE (SIEMPRE ABAJO) */
.row-details[b-xfa4u9k7nt] {
    display: none;
    width: 100%; /* 🔑 FUERZA IR ABAJO */
    margin-top: 15px;
    padding: 15px;
    border-top: 1px dashed #ddd;
    background: #f9fafc;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
}

/* ACTIVO (DESKTOP + MOBILE) */
.expandable.active .row-details[b-xfa4u9k7nt] {
    display: block;
}

.expandable[b-xfa4u9k7nt]::after {
    content: "▾";
    margin-left: auto;
    color: #999;
    transition: transform .2s;
}

.expandable.active[b-xfa4u9k7nt]::after {
    transform: rotate(180deg);
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 769px) {
    .expandable.active .row-details[b-xfa4u9k7nt] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* =========================
   MOBILE MODE
========================= */
@media (max-width: 768px) {

    .table-header[b-xfa4u9k7nt] {
        display: none;
    }

    .table-row[b-xfa4u9k7nt] {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .row-fields[b-xfa4u9k7nt] {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }

        .row-fields[b-xfa4u9k7nt]::before {
            content: attr(data-label);
            font-weight: 600;
            color: #4466c4;
        }

        .row-fields span[b-xfa4u9k7nt] {
            text-align: right;
            color: #333;
        }

    .expandable.active .row-details[b-xfa4u9k7nt] {
        display: block;
    }
}
/* _content/Jobby/Pages/Home.razor.rz.scp.css */
*[b-3qvkdkahqv], *[b-3qvkdkahqv]::before, *[b-3qvkdkahqv]::after {
    box-sizing: border-box;
}

.main-content[b-3qvkdkahqv] {
    width: 100%;
    height: 80dvh;
    /*background-color: black;*/ 
    display: flex;
    flex-direction: row;
}

.services-content[b-3qvkdkahqv] {
    width: 60%;
    height: 100%;
    /*background-color: gray;*/
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
}

.dashboard-content[b-3qvkdkahqv] {
    width: 40%;
    height: 100%;
    /*background-color: antiquewhite;*/
    display: flex;
    flex-direction: column;
}

.service-box[b-3qvkdkahqv] {
    width: 600px;
    height: 300px;
    border: 1px solid rgb(120, 120, 120);
    border-radius: 15px;
    margin-top: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);*/
}

.servicebox-header[b-3qvkdkahqv] {
    width: 100%;
    height: 70px;
    /*background-color: black;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 1px solid rgb(120, 120, 120);
}

.servicebox-content[b-3qvkdkahqv] {
    width: 100%;
    height: 180px;
    /*background-color: gray;*/
}

.servicebox-footer[b-3qvkdkahqv] {
    width: 100%;
    height: 50px;
    /*background-color: black;*/
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top: 1px solid rgb(120, 120, 120);
}

/*Estilos de la cabecera de la caja de servicios*/

.servicebox-header-content[b-3qvkdkahqv] {
    width: 100%;
    height: 70px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.servicebox-photo[b-3qvkdkahqv] {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: black;
    margin-right: 20px;
}

.alert-message[b-3qvkdkahqv] {
    width: 400px;
}

/*Estilos del contenido de la caja de servicios*/

.servicebox-content-content[b-3qvkdkahqv] {
    width: 100%;
    height: 180px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .servicebox-content-content span[b-3qvkdkahqv] {
    font-size: 24px;
    font-weight: bold;
    }

    .servicebox-content-content button[b-3qvkdkahqv] {
        width: 130px;
        height: 40px;
        font-size: 14px;
        border: none;
        background-color: rgb(68, 114, 196);
        border-radius: 20px;
        color: white;
        margin-top: 20px;
    }

/*Estilos del footer de la caja de servicios*/

.servicebox-footer-content[b-3qvkdkahqv] {
    width: 100%;
    height: 50px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .servicebox-footer-content i[b-3qvkdkahqv] {
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
    }

/*PARTE DEL DASHBOARD*/
.dashboard-summary[b-3qvkdkahqv] {
    width: 100%;
    height: 30%;
    /*background-color: black;*/
    display: flex;
    flex-direction: row;
    align-items: center;
}

.summary[b-3qvkdkahqv] {
    width: 150px;
    height: 180px;
    background-color: rgba(68, 114, 196, .6);
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    margin-right: 30px;
}

    .summary:last-child[b-3qvkdkahqv] {
        margin-right: 0px;
    }

    .summary:hover[b-3qvkdkahqv] {
        background-color: rgb(68, 114, 196);
        color: white;
    }

.summary-percent[b-3qvkdkahqv] {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: rgb(68, 114, 196);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 20px;
}

/*PARTE DEL UPCOMING*/
.upcoming-services[b-3qvkdkahqv] {
width: 100%;
height: 70%;
/*background-color: gray;*/
}

.upcoming-services-header[b-3qvkdkahqv] {
width: 100%;
height: 20%;
/*background-color: blue;*/
display: flex;
align-items: center;
}

    .upcoming-services-header span[b-3qvkdkahqv] {
    font-size: 22px;
    }

.upcoming-services-content[b-3qvkdkahqv] {
width: 100%;
height: 80%;
overflow-y: scroll;
/*background-color: antiquewhite;*/
}

    .upcoming-services-content[b-3qvkdkahqv]::-webkit-scrollbar {
        display: none;
    }

.upcoming-services-box[b-3qvkdkahqv] {
width: 100%;
height: 80px;
/*background-color: aqua;*/
display: flex;
flex-direction: row;
align-items: center;
position: relative;
color: rgb(60, 60, 60);
cursor: pointer;
}

    .upcoming-services-box:hover[b-3qvkdkahqv] {
    background-color: rgba(68, 114, 196, .6);
    border-radius: 15px;
    padding: 0px 20px;
    }

.upcoming-services-index[b-3qvkdkahqv] {
width: 60px;
height: 60px;
border-radius: 30px;
background-color: rgb(68, 114, 196);
display: flex;
align-items: center;
justify-content: center;
color: white;
margin-right: 30px;
font-size:12px;
}

.menuresponsive[b-3qvkdkahqv]{
    display: none;
}

@media only screen and (max-width: 768px) {
    .dashboard-content[b-3qvkdkahqv] {
        width: 40%;
        height: 100%;
        /*background-color: antiquewhite;*/
        display: none;
        flex-direction: column;
    }

    .services-content[b-3qvkdkahqv] {
        width: 100%;
        height: 100%;
        /*background-color: gray;*/
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
    }

    .service-box[b-3qvkdkahqv] {
        width: 100%;
        height: 300px;
        border: 1px solid rgb(120, 120, 120);
        border-radius: 15px;
        margin-top: 15px;
        position: relative;
        display: flex;
        flex-direction: column;
        /*box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);*/
    }

    /*Estilos de la cabecera de la caja de servicios*/

    .servicebox-header-content[b-3qvkdkahqv] {
        width: 100%;
        height: 70px;
        padding-left: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    /*Estilos del contenido de la caja de servicios*/

    .servicebox-content-content[b-3qvkdkahqv] {
        width: 100%;
        height: 180px;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .servicebox-content-content span[b-3qvkdkahqv] {
            font-size: 20px;
            font-weight: bold;
        }

        .servicebox-content-content button[b-3qvkdkahqv] {
            width: 130px;
            height: 40px;
            font-size: 14px;
            border: none;
            background-color: rgb(68, 114, 196);
            border-radius: 20px;
            color: white;
            margin-top: 20px;
        }

    /*Estilos del footer de la caja de servicios*/

    .servicebox-footer-content[b-3qvkdkahqv] {
        width: 100%;
        height: 50px;
        display: flex;
        padding-left: 0px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

        .servicebox-footer-content i[b-3qvkdkahqv] {
            font-size: 22px;
            margin-right: 22px;
            cursor: pointer;
        }

        .servicebox-footer-content i:last-child[b-3qvkdkahqv] {
            font-size: 22px;
            margin-right: 0px;
            cursor: pointer;
        }

    .main-content[b-3qvkdkahqv] {
        width: 100%;
        height: 80dvh;
        /*background-color: black;*/
        display: flex;
        flex-direction: row;
    }

    .menuresponsive[b-3qvkdkahqv] {
        display: block;
        background-color: white;
        width: 100%;
        height: 60px;
        position: fixed;
        bottom: 0;
        left: 0;
        box-shadow: 0px -3px 10px rgb(0, 0, 0, .3);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .header-options[b-3qvkdkahqv] {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-options i[b-3qvkdkahqv] {
            font-size: 24px;
            color: rgb(68, 114, 196);
            cursor: pointer;
        }

    .servicebox-options-photo[b-3qvkdkahqv] {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background-color: rgb(68, 114, 196);
        margin: 0px 30px;
    }

    .alert-message-mobile[b-3qvkdkahqv] {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cards-wrap[b-3qvkdkahqv] {
        width: 100%;
        padding: 0 12px; /* espacio seguro lateral */
        display: flex;
        flex-direction: column;
        align-items: center; /* centra las cards */
    }

    .margin-cards[b-3qvkdkahqv] {
        padding-top: 5%;
        margin: 0 auto;
    }

    .service-card[b-3qvkdkahqv] {
        width: 100%;
        max-width: 100%; /* 👈 elimina el límite */
        margin-left: auto;
        margin-right: auto;
    }

    .thumb[b-3qvkdkahqv] {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
    }

    .client-name[b-3qvkdkahqv] {
        font-size: 14px;
    }

    .price[b-3qvkdkahqv] {
        font-size: 14px;
    }

    .actions[b-3qvkdkahqv] {
        justify-content: space-between;
        width: 100%;
    }

        .actions .btn[b-3qvkdkahqv] {
            flex: 1 1 auto; /* se reparten el espacio */
            justify-content: center;
            padding: 8px 6px;
            font-size: 12px;
            white-space: nowrap; /* 👈 evita salto de texto */
        }

            .actions .btn svg[b-3qvkdkahqv] {
                width: 14px;
                height: 14px;
            }
}

/************************************************************************************************************/

body[b-3qvkdkahqv] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cards-wrap[b-3qvkdkahqv] {
/*    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 18px;*/
    max-width: 1100px;
    display: flex;
    flex-direction: column;
}

.service-card[b-3qvkdkahqv] {
    max-width: 600px;
    background: white;
    border-radius: 12px;
    /*box-shadow: 1px 2px 14px rgba(2,6,23,0.6);*/
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 2px solid rgba(255,255,255,0.03);
    transition: transform .12s ease, box-shadow .12s ease;
    margin-top: 10px
}

    .service-card:hover[b-3qvkdkahqv] {
        transform: translateY(-6px);
        /*box-shadow: 0 10px 30px rgba(2,6,23,0.75);*/
    }

.thumb[b-3qvkdkahqv] {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--glass);
    display: block;
    position: relative;
}

    .thumb img[b-3qvkdkahqv] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.card-main[b-3qvkdkahqv] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.row-top[b-3qvkdkahqv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.meta-left[b-3qvkdkahqv] {
    min-width: 0;
}

.client-name[b-3qvkdkahqv] {
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: black
}

.order-code[b-3qvkdkahqv] {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}

.service-title[b-3qvkdkahqv] {
    font-size: 13px;
    color: black;
    font-weight: 600;
}

.badge[b-3qvkdkahqv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}

    .badge .dot[b-3qvkdkahqv] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

    .badge.status-pending[b-3qvkdkahqv] {
        color: #fbbf24;
        background: rgba(251,191,36,0.06);
    }

    .badge.status-active[b-3qvkdkahqv] {
        color: var(--success);
        background: rgba(16,185,129,0.06);
    }

    .badge.status-cancel[b-3qvkdkahqv] {
        color: var(--danger);
        background: rgba(239,68,68,0.06);
    }

.row-mid[b-3qvkdkahqv] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.info-list[b-3qvkdkahqv] {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.info-item[b-3qvkdkahqv] {
    display: flex;
    gap: 6px;
    align-items: center;
    white-space: nowrap;
}

.price[b-3qvkdkahqv] {
    font-weight: 700;
    color: black;
    font-size: 16px;
}

.desc[b-3qvkdkahqv] {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    margin-top: 4px;
}

.actions[b-3qvkdkahqv] {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.btn[b-3qvkdkahqv] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    color: #e6eef6;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: transform .08s ease, background .08s ease, border-color .08s ease;
}

    .btn:hover[b-3qvkdkahqv] {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.12);
    }

    .btn svg[b-3qvkdkahqv] {
        width: 16px;
        height: 16px;
        display: block;
        opacity: 0.95;
    }

    .btn.ghost[b-3qvkdkahqv] {
        background: lightgray;
        color: black
    }

    .btn.primary[b-3qvkdkahqv] {
        background: linear-gradient(90deg, rgba(6,182,212,0.12), rgba(6,182,212,0.08));
        border: 1px solid rgba(6,182,212,0.18);
        color: var(--accent);
        font-weight: 700;
    }

    .btn.success[b-3qvkdkahqv] {
        border: 1px solid rgba(16,185,129,0.12);
        color: var(--success);
        background: rgba(16,185,129,0.04);
    }

    .btn.danger[b-3qvkdkahqv] {
        border: 1px solid rgba(239,68,68,0.12);
        color: var(--danger);
        background: rgba(239,68,68,0.04);
    }
/* _content/Jobby/Pages/Index.razor.rz.scp.css */
.background-images[b-fi94ggqoju] {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

@media (max-width: 768px) {
    .background-images[b-fi94ggqoju] {
        object-position: center top; /* enfoca la parte superior */
    }
}
/* _content/Jobby/Pages/Login.razor.rz.scp.css */
main[b-fzttmvo2ug] {
    padding: 2rem;
}

    main .containerlogin[b-fzttmvo2ug] {
        max-width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    main .resetpass[b-fzttmvo2ug] {
        max-width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    main form[b-fzttmvo2ug] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        main form label[b-fzttmvo2ug] {
            margin-top: 1rem;
        }

        main form input[type="text"][b-fzttmvo2ug],
        main form input[type="password"][b-fzttmvo2ug],
        main form textarea[b-fzttmvo2ug]{
            width: 250px;
            height: 45px;
            margin-top: 1rem;
            border-radius: 0.25rem;
            padding: 0.5rem;
            font-size: 1rem;
            border-bottom: 2px solid rgba(40, 35, 34, 1);
            border-top: none;
            border-left: none;
            border-right: none;
        }

        main form input[type="submit"][b-fzttmvo2ug] {
            padding: 10px 25px;
            background-color: rgb(255, 192, 0);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 20px;
            font-weight: bold;
            margin-top: 1rem;
            cursor: pointer;
        }

        main form textarea[b-fzttmvo2ug] {
            width: 14.3em;
            height: 18em;
            resize: none;
        }

    main .formulario[b-fzttmvo2ug] {
        background-color: white;
        width: 26em;
        padding: 2em 0;
        border-radius: 1em;
        box-shadow: 0 8px 50px #23232333;
    }

@media (max-width: 768px) {

    main .formulario[b-fzttmvo2ug] {
        background-color: white;
        width: 23em;
        padding: 2em 0;
        border-radius: 1em;
    }

    main .containerlogin[b-fzttmvo2ug] {
        max-width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    main form input[type="text"][b-fzttmvo2ug],
    main form input[type="password"][b-fzttmvo2ug],
    main form textarea[b-fzttmvo2ug] {
        width: 220px;
        height: 45px;
        margin-top: 1rem;
        border-radius: 0.25rem;
        padding: 0.5rem;
        font-size: 1rem;
        border-bottom: 2px solid rgba(40, 35, 34, 1);
        border-top: none;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 380px) {

    main .formulario[b-fzttmvo2ug] {
        background-color: white;
        width: 20em;
        padding: 2em 0;
        border-radius: 1em;
    }

    main .containerlogin[b-fzttmvo2ug] {
        max-width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    main form input[type="text"][b-fzttmvo2ug],
    main form input[type="password"][b-fzttmvo2ug],
    main form textarea[b-fzttmvo2ug] {
        width: 190px;
        height: 45px;
        margin-top: 1rem;
        border-radius: 0.25rem;
        padding: 0.5rem;
        font-size: 1rem;
        border-bottom: 2px solid rgba(40, 35, 34, 1);
        border-top: none;
        border-left: none;
        border-right: none;
    }

    main form input[type="submit"][b-fzttmvo2ug] {
        width: 140px;
        height: 50px;
        background-color: orange;
        color: white;
        border: none;
        font-weight: bold;
        margin-top: 1rem;
        cursor: pointer;
    }
}


/******* ANIMATED BACKGROUND *******/

.area[b-fzttmvo2ug] {
    background: rgb(68, 114, 196);
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;
    position: fixed;
}

.circles[b-fzttmvo2ug] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li[b-fzttmvo2ug] {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate-b-fzttmvo2ug 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1)[b-fzttmvo2ug] {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2)[b-fzttmvo2ug] {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3)[b-fzttmvo2ug] {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4)[b-fzttmvo2ug] {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5)[b-fzttmvo2ug] {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6)[b-fzttmvo2ug] {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7)[b-fzttmvo2ug] {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8)[b-fzttmvo2ug] {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9)[b-fzttmvo2ug] {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10)[b-fzttmvo2ug] {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate-b-fzttmvo2ug {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/****************** REQUEST *********************/
.login-box[b-fzttmvo2ug] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    margin: 20px auto;
    transform: translate(-50%, -55%);
    background: rgba(0,0,0,.9);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px;
}

    .login-box .user-box[b-fzttmvo2ug] {
        position: relative;
    }

        .login-box .user-box input[b-fzttmvo2ug] {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            margin-bottom: 30px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .login-box .user-box select[b-fzttmvo2ug] {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            margin-bottom: 10px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .login-box .user-box label[b-fzttmvo2ug] {
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            pointer-events: none;
            transition: .5s;
        }

        .login-box .user-box input:focus ~ label[b-fzttmvo2ug],
        .login-box .user-box input:valid ~ label[b-fzttmvo2ug] {
            top: -20px;
            left: 0;
            color: #fff;
            font-size: 12px;
        }

    .login-box a span[b-fzttmvo2ug] {
        position: absolute;
        display: block;
    }

        .login-box a span:nth-child(1)[b-fzttmvo2ug] {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff);
            animation: btn-anim1-b-fzttmvo2ug 1.5s linear infinite;
        }

@keyframes btn-anim1-b-fzttmvo2ug {
    0% {
        left: -100%;
    }

    50%,100% {
        left: 100%;
    }
}

.login-box a span:nth-child(2)[b-fzttmvo2ug] {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: btn-anim2-b-fzttmvo2ug 1.5s linear infinite;
    animation-delay: .375s
}

@keyframes btn-anim2-b-fzttmvo2ug {
    0% {
        top: -100%;
    }

    50%,100% {
        top: 100%;
    }
}

.login-box a span:nth-child(3)[b-fzttmvo2ug] {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: btn-anim3-b-fzttmvo2ug 1.5s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim3-b-fzttmvo2ug {
    0% {
        right: -100%;
    }

    50%,100% {
        right: 100%;
    }
}

.login-box a span:nth-child(4)[b-fzttmvo2ug] {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: btn-anim4-b-fzttmvo2ug 1.5s linear infinite;
    animation-delay: 1.125s
}

@keyframes btn-anim4-b-fzttmvo2ug {
    0% {
        bottom: -100%;
    }

    50%,100% {
        bottom: 100%;
    }
}

.login-box p:last-child[b-fzttmvo2ug] {
    color: #aaa;
    font-size: 14px;
}

.login-box a.a2[b-fzttmvo2ug] {
    color: #fff;
    text-decoration: none;
}

    .login-box a.a2:hover[b-fzttmvo2ug] {
        background: transparent;
        color: #aaa;
        border-radius: 5px;
    }
/* _content/Jobby/Pages/NotificationsPage.razor.rz.scp.css */
/* =========================
   CONTENEDOR GENERAL
========================= */
.customers-notification[b-9mwjjki2et] {
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    background: #f5f7fb;
}

/* =========================
   CARD PRINCIPAL
========================= */
.customers-notification-content[b-9mwjjki2et] {
    width: 720px;
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow-y: auto;
}

/* =========================
   TITULOS
========================= */
.notifications-title[b-9mwjjki2et] {
    margin: 20px 0;
    font-weight: 600;
}

.customers-notification-content h5[b-9mwjjki2et] {
    margin-bottom: 20px;
}

.letter[b-9mwjjki2et] {
    margin-bottom: 20px;
    font-weight: bold;
}

/* =========================
   NOTIFICACIÓN CARD
========================= */
.customers-notification-box[b-9mwjjki2et] {
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 15px;
    transition: background .2s, box-shadow .2s;
}

    /* NO VISTA */
    .customers-notification-box.unseen[b-9mwjjki2et] {
        background: #eef2ff;
        box-shadow: 0 6px 15px rgba(68,102,196,.15);
    }

    /* VISTA */
    .customers-notification-box.seen[b-9mwjjki2et] {
        background: #f9f9f9;
    }

    /* HOVER */
    .customers-notification-box:hover[b-9mwjjki2et] {
        background: #f0f2f5;
    }

/* =========================
   HEADER
========================= */
.customers-notification-header[b-9mwjjki2et] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customers-notification-photo[b-9mwjjki2et] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4466c4, #5b7cfa);
    flex-shrink: 0;
}

/* =========================
   TEXTO
========================= */
.customers-notification-header span[b-9mwjjki2et] {
    font-size: 14px;
    line-height: 1.4;
}

    .customers-notification-header span span[b-9mwjjki2et] {
        display: inline-block;
        margin-top: 4px;
    }

/* =========================
   BODY
========================= */
.customers-notification-body[b-9mwjjki2et] {
    margin-left: 58px;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

    /* =========================
   MARCAR VISTO
========================= */
    .customers-notification-body span[onclick][b-9mwjjki2et] {
        color: #4466c4;
        font-weight: 600;
        cursor: pointer;
    }

        .customers-notification-body span[onclick]:hover[b-9mwjjki2et] {
            text-decoration: underline;
        }

/* =========================
   ICONO ALERTA
========================= */
.fa-circle-exclamation[b-9mwjjki2et] {
    font-size: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .customers-notification[b-9mwjjki2et] {
        padding: 10px;
    }

    .customers-notification-content[b-9mwjjki2et] {
        width: 100%;
        border-radius: 0;
        padding: 20px;
    }

    .customers-notification-photo[b-9mwjjki2et] {
        width: 40px;
        height: 40px;
    }

    .customers-notification-body[b-9mwjjki2et] {
        margin-left: 52px;
    }

    .letter[b-9mwjjki2et] {
        margin-left: 5px;
    }

    .notifications-title[b-9mwjjki2et] {
        margin-left: 12px;
    }
}
/* _content/Jobby/Pages/OffersPage.razor.rz.scp.css */
.offer-content[b-i4ls1ulwnk] {
    display: flex;
    flex-direction: row;
    margin-top: 2%;
    height: calc(100dvh - 100px);
    overflow: hidden;
}

.offer-list[b-i4ls1ulwnk] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.offer-card[b-i4ls1ulwnk] {
    width: 100%;
}

.full-screen-grid[b-i4ls1ulwnk] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    flex: 1;
    box-sizing: border-box;
}

.edit-box[b-i4ls1ulwnk] {
    width: 700px;
}

@media only screen and (max-width: 768px) {
    .offer-content[b-i4ls1ulwnk] {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .offer-list[b-i4ls1ulwnk] {
        display: flex;
        flex-direction: column;
        margin-left: -7%;
    }

    .offer-card[b-i4ls1ulwnk] {
        width: 100%;
    }
}
/* _content/Jobby/Pages/OrderService.razor.rz.scp.css */
.servicebox[b-djtxyang0u] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .servicebox h2[b-djtxyang0u] {
        font-weight: bold;
    }

.service-content[b-djtxyang0u] {
    width: 600px;
    border-radius: 7px;
    background-color: white;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0px 0px 4px rgb(217, 217, 217);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inputs[b-djtxyang0u] {
    width: 400px;
    height: 35px;
    border-radius: 5px;
    background-color: rgb(242, 242, 242);
    border: 1px solid rgb(211, 211, 211);
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

    .inputs:focus[b-djtxyang0u] {
    outline: none;
    }

.btnenviar[b-djtxyang0u] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

body[b-djtxyang0u] {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.checkbox-container[b-djtxyang0u] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-checkbox[b-djtxyang0u] {
    display: none; /* Oculta el checkbox nativo */
}

.checkbox-label[b-djtxyang0u] {
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Color del borde */
    border-radius: 3px;
    margin-right: 8px; /* Espacio entre el checkbox y el texto */
    cursor: pointer;
}

    .checkbox-label:hover[b-djtxyang0u] {
        background-color: #f0f0f0; /* Cambia el fondo al pasar el mouse */
    }

.custom-checkbox:checked + .checkbox-label[b-djtxyang0u] {
    background-color: rgb(68, 114, 196); /* Cambia el fondo cuando está marcado */
    border-color: rgb(68, 114, 196); /* Cambia el color del borde cuando está marcado */
}

.label-text[b-djtxyang0u] {
    user-select: none; /* Evita que el texto sea seleccionable */
    cursor: pointer;
}

.background-images[b-djtxyang0u] {
    width: 100%;
    height: 100dvh;
    position: absolute;
    object-fit: cover;
}

@media (max-width: 768px) {
    .background-images[b-djtxyang0u] {
        object-position: center top; /* enfoca la parte superior */
    }
}
/* _content/Jobby/Pages/OrdersPage.razor.rz.scp.css */
.orders[b-sxy5fxccx2] {
    width: 100%;
    min-height: calc(100dvh - 120px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 20px;
    padding: 20px;
    align-content: start;
}

.order-box[b-sxy5fxccx2] {
    width: 350px;
    height: 350px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
    border-radius: 15px;
    margin-top: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);*/
}

.order-header[b-sxy5fxccx2] {
    width: 100%;
    height: 70px;
    /*background-color: black;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 1px solid rgb(120, 120, 120);
}

.order-content[b-sxy5fxccx2] {
    width: 100%;
    height: 230px;
    /*background-color: gray;*/
}

.order-footer[b-sxy5fxccx2] {
    width: 100%;
    height: 80px;
    /*background-color: black;*/
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top: 1px solid rgb(120, 120, 120);
}

.letter[b-sxy5fxccx2] {
    font-weight: bold;
    margin-left: 20px
}

/*Estilos de la cabecera de la caja de servicios*/
.order-header-content[b-sxy5fxccx2] {
    width: 100%;
    height: 70px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.order-photo[b-sxy5fxccx2] {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: black;
    margin-right: 20px;
}

/*Estilos del contenido de la caja de servicios*/

.order-content-content[b-sxy5fxccx2] {
    width: 100%;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .order-content-content span[b-sxy5fxccx2] {
        font-size: 24px;
        font-weight: bold;
    }

    .order-content-content button[b-sxy5fxccx2] {
        width: 130px;
        height: 40px;
        font-size: 14px;
        border: none;
        background-color: rgb(68, 114, 196);
        border-radius: 20px;
        color: white;
        margin-top: 20px;
    }

/*Estilos del footer de la caja de servicios*/

.order-footer-content[b-sxy5fxccx2] {
    width: 100%;
    height: 50px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .order-footer-content i[b-sxy5fxccx2] {
        font-size: 24px;
        margin-right: 20px;
        cursor: pointer;
    }

@media only screen and (max-width: 768px) {
    .orders[b-sxy5fxccx2] {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    }

    .job-card[b-sxy5fxccx2] {
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }

    .order-box[b-sxy5fxccx2] {
        width: 250px;
        height: 270px;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
        border-radius: 15px;
        margin-top: 0px;
        margin-left: 0px;
        position: relative;
        display: flex;
        flex-direction: column;
        /*box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);*/
    }

    .order-header[b-sxy5fxccx2] {
        width: 100%;
        height: 60px;
        /*background-color: black;*/
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom: 1px solid rgb(120, 120, 120);
    }

    .order-content[b-sxy5fxccx2] {
        width: 100%;
        height: 165px;
        /*background-color: gray;*/
    }

    .order-footer[b-sxy5fxccx2] {
        width: 100%;
        height: 40px;
        /*background-color: black;*/
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        border-top: 1px solid rgb(120, 120, 120);
    }

    /*Estilos de la cabecera de la caja de servicios*/
    .order-header-content[b-sxy5fxccx2] {
        width: 100%;
        height: 100%;
        padding-left: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .order-photo[b-sxy5fxccx2] {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background-color: black;
        margin-right: 0px;
    }

    /*Estilos del contenido de la caja de servicios*/

    .order-content-content[b-sxy5fxccx2] {
        width: 100%;
        height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .order-content-content span[b-sxy5fxccx2] {
            font-size: 20px;
            font-weight: bold;
        }

        .order-content-content button[b-sxy5fxccx2] {
            width: 130px;
            height: 40px;
            font-size: 14px;
            border: none;
            background-color: rgb(68, 114, 196);
            border-radius: 20px;
            color: white;
            margin-top: 20px;
        }

    /*Estilos del footer de la caja de servicios*/

    .order-footer-content[b-sxy5fxccx2] {
        width: 100%;
        height: 50px;
        padding-left: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

        .order-footer-content i[b-sxy5fxccx2] {
            font-size: 20px;
            margin-right: 20px;
            cursor: pointer;
        }

        .order-footer-content i:last-child[b-sxy5fxccx2] {
            font-size: 20px;
            margin-right: 0px;
            cursor: pointer;
        }

    .letter[b-sxy5fxccx2] {
    margin-top: 5%;
    }
}

/*CAJA DE OFERTAS*/
:root[b-sxy5fxccx2] {
    --card-bg: #ffffff;
    --muted: #6b7280;
    --accent: #0ea5a4;
    --glass: rgba(14,165,164,0.10);
    --radius: 12px;
    --shadow: 0 6px 18px rgba(15,23,42,0.08);
    --max-width: 420px;
    --gap: 12px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.avatar[b-sxy5fxccx2] {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    background: var(--glass);
    border: 1px solid rgba(15,23,42,0.04);
}

    .avatar img[b-sxy5fxccx2] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.contentoffer[b-sxy5fxccx2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0; /* para truncado */
}

.title[b-sxy5fxccx2] {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.description[b-sxy5fxccx2] {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta[b-sxy5fxccx2] {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 6px;
}

.price-wrap[b-sxy5fxccx2] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-left: 8px;
}

.price[b-sxy5fxccx2] {
    font-weight: 700;
    font-size: 18px;
    color: #08122b;
    letter-spacing: -0.2px;
}

.unit-badge[b-sxy5fxccx2] {
    font-size: 12px;
    padding: 6px 8px;
    background: linear-gradient(180deg, rgba(14,165,164,0.12), rgba(14,165,164,0.06));
    color: var(--accent);
    border-radius: 999px;
    border: 1px solid rgba(14,165,164,0.14);
    white-space: nowrap;
}

.actions[b-sxy5fxccx2] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-left: 8px;
}

.btn[b-sxy5fxccx2] {
    border: 0;
    background: var(--accent);
    color: white;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(14,165,164,0.14);
    font-size: 13px;
}

    .btn.secondary[b-sxy5fxccx2] {
        background: transparent;
        color: #0f172a;
        border: 1px solid rgba(15,23,42,0.06);
        box-shadow: none;
        padding: 6px 10px;
    }

/* estado pequeño para etiquetas de ejemplo */
.tag[b-sxy5fxccx2] {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid rgba(15,23,42,0.03);
}

/* pequeños refinamientos visuales */
.price small[b-sxy5fxccx2] {
    font-weight: 500;
    color: var(--muted);
    font-size: 12px
}

/******************** CAJA DE SERVICIOS **************************/

.job-card[b-sxy5fxccx2] {
    max-width: 100%;
    width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 16px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
}

.jobber-img[b-sxy5fxccx2] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.job-info h3[b-sxy5fxccx2] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.job-info p[b-sxy5fxccx2] {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.order[b-sxy5fxccx2] {
    font-size: 13px;
    color: #888;
}

.actions[b-sxy5fxccx2] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

    .actions button[b-sxy5fxccx2] {
        padding: 8px;
        font-size: 13px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        font-weight: bold;
    }

.complete[b-sxy5fxccx2] {
    background: #22c55e;
    color: #fff;
}

.cancel[b-sxy5fxccx2] {
    background: #ef4444;
    color: #fff;
}

.offer[b-sxy5fxccx2] {
    background: #3b82f6;
    color: #fff;
}

.secondary[b-sxy5fxccx2] {
    background: #e5e7eb;
    color: #111;
}

.footer[b-sxy5fxccx2] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.timer[b-sxy5fxccx2] {
    background: #111827;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}
/* _content/Jobby/Pages/PrivacyPage.razor.rz.scp.css */
*[b-njuklo9qes] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.body[b-njuklo9qes] {
    margin: 0;
    padding: 0;
    height: 100dvh;
    overflow: hidden;
    display: flex;
}

/* Sidebar fijo */
.sidebar[b-njuklo9qes] {
    width: 250px;
    height: 100dvh;
    background-color: #f1f3f4;
    padding: 10px;
    position: fixed;
    left: 0;
    top: 0;
}

    .sidebar ul[b-njuklo9qes] {
        list-style: none;
        padding: 0;
    }

        .sidebar ul li[b-njuklo9qes] {
            padding: 10px;
            cursor: pointer;
        }

            .sidebar ul li a[b-njuklo9qes] {
                color: black;
                text-decoration: none;
            }

/* Header fijo */
header[b-njuklo9qes] {
    position: fixed;
    top: 0;
    left: 250px; /* Empieza después del sidebar */
    width: calc(100% - 250px);
    height: 5dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.logo[b-njuklo9qes] {
    cursor: pointer;
    width: 100px;
    height: 30px;
    background: url('/images/logo/logo home.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 4%;
}

nav ul[b-njuklo9qes] {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

    nav ul li[b-njuklo9qes] {
        cursor: pointer;
    }

.active[b-njuklo9qes] {
    border-bottom: 2px solid blue;
}

.login-btn[b-njuklo9qes] {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

/* Contenido principal ajustado */
main[b-njuklo9qes] {
    margin-left: 250px; /* Se desplaza por el sidebar */
    padding: 20px;
    padding-top: 6dvh; /* Evita que se superponga con el header */
    height: calc(100dvh - 3dvh);
    overflow-y: auto; /* Permite desplazamiento si el contenido es largo */
    background: #fff;
}

.content-section[b-njuklo9qes] {
    padding: 15px 20px;
}

.content p[b-njuklo9qes] {
    width: 80%;
    text-align: justify;
}

.privacy-review[b-njuklo9qes] {
    margin-top: 20px;
    background-color: #e8f0fe;
    padding: 10px;
    border-radius: 5px;
}

footer[b-njuklo9qes] {
    margin-top: 20px;
    font-size: 14px;
    color: gray;
}

    footer a[b-njuklo9qes] {
        color: #4285f4;
        text-decoration: none;
    }
/* _content/Jobby/Pages/QueuePage.razor.rz.scp.css */
.queue-content[b-h9rcw96keq] {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.queue-list[b-h9rcw96keq] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.queue-card[b-h9rcw96keq] {
    width: 100%;
    max-width: 400px;
}

.queue-options[b-h9rcw96keq] {
    width: 300px;
}

.queue-options1[b-h9rcw96keq] {
    display: none;
}

@media only screen and (max-width: 768px) {
    .queue-content[b-h9rcw96keq] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra el contenido en móviles */
    }

    .queue-list[b-h9rcw96keq] {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin-left: 0; /* Eliminado el margen negativo */
    }

    .queue-card[b-h9rcw96keq] {
        width: 100%;
        max-width: 350px;
    }

    .queue-options[b-h9rcw96keq] {
        display: none;
    }

    .queue-options1[b-h9rcw96keq] {
        display: block;
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
}

/* OFFERS */
.offer-content[b-h9rcw96keq] {
    display: flex;
    flex-direction: row;
    margin-top: 2%;
    height: calc(100dvh - 100px);
    overflow: hidden;
    width: 100%;
}

.offer-list[b-h9rcw96keq] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    width: 100%;
}

.offer-card[b-h9rcw96keq] {
    width: 100%;
}

.full-screen-grid[b-h9rcw96keq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    flex: 1;
    box-sizing: border-box;
}

.edit-box[b-h9rcw96keq] {
    width: 100%;
    max-width: 700px;
}

@media only screen and (max-width: 768px) {
    .offer-content[b-h9rcw96keq] {
        flex-direction: column;
        height: 100dvh; /* Usa toda la altura en móviles */
    }

    .offer-list[b-h9rcw96keq] {
        margin-left: 0; /* Eliminado el margen negativo */
        padding: 10px;
    }

    .full-screen-grid[b-h9rcw96keq] {
        grid-template-columns: 1fr; /* Una sola columna en móviles */
        padding: 10px;
    }
}
/* _content/Jobby/Pages/Services.razor.rz.scp.css */
/* Estilo de las secciones */
section[b-3x69m4az62] {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

/* Estilo de la primera sección */
#section1[b-3x69m4az62] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Estilo de la segunda sección */
#section2[b-3x69m4az62] {
    background-color: rgb(68, 114, 196);
}


main[b-3x69m4az62] {
    padding: 2rem;
}

    main .container[b-3x69m4az62] {
        max-width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /*background-color: white;*/
    }


    main h2[b-3x69m4az62] {
        margin-bottom: 2rem;
        font-size: 65px;
    }

@media (max-width: 768px) {
    main h2[b-3x69m4az62] {
        font-size: 36px;
    }

    main .container[b-3x69m4az62] {
        width: 300px;
    }

    .services[b-3x69m4az62] {
        flex-direction: column;
    }

    .service[b-3x69m4az62] {
        border-left: solid 2px white;  
    }
}

main[b-3x69m4az62] {
    padding: 2rem;
}

.btnenviar[b-3x69m4az62] {
    font-size: 18px;
    text-align: center;
    width: 160px;
    padding: 15px 0;
    background-color: rgb(85, 112, 253);
    color: white;
    border: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

    .btnenviar:hover[b-3x69m4az62] {
        /*font-size: 18px;
	background-color: white;
	color: rgba(43, 43, 48, 1.0);*/
    }

/*** section 2 ***/

/* Estilo del div que contiene los servicios */
.services[b-3x69m4az62] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100dvh;
}

/* Estilo de cada servicio */
.service[b-3x69m4az62] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    border-right: solid 2px white;
    cursor: pointer;
    color: white;
}

    .service:hover[b-3x69m4az62] {
    font-size: 1.3em;
    }

/* Estilo del texto de cada servicio */
.service p[b-3x69m4az62] {
    font-size: 1.2rem;
    font-weight: bold;
}

.servicedata.showing[b-3x69m4az62] {
    display: flex;
}

.servicedata[b-3x69m4az62] {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    z-index: 2;
    display: none;
}

    .servicedata span[b-3x69m4az62] {
        cursor: pointer;
        color: white;
        font-size: 32px;
    }

.servicebox[b-3x69m4az62] {
    width: 260px;
    height: 460px;
    background-color: white;
    margin: 30px auto;
    border-radius: 10px;
    padding: 20px;
}

.servicebox_content[b-3x69m4az62] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    flex-direction: column;
}

    .servicebox_content p[b-3x69m4az62] {
        font-size: 22px;
        margin: 0;
    }

.servicebtn[b-3x69m4az62] {
    font-size: 18px;
    padding: 15px 2px;
    width: 130px;
    background-color: #61dafb;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}
/* _content/Jobby/Pages/Settings.razor.rz.scp.css */
.settings-content[b-ymbp60lach] {
width: 100%;
background-color: rgb(241, 241, 241);
display: flex;
flex-direction: column;
padding: 0 30px;
border-radius: 20px;
}

.settings-header[b-ymbp60lach] {
width: 100%;
height: 150px;
border-bottom: 1px solid rgb(204, 204, 204);
display: flex;
flex-direction: row;
align-items: center;
}

.profile-photo[b-ymbp60lach] {
width: 90px;
height: 90px;
background-color: black;
border-radius: 50%;
cursor: pointer;
margin-right: 20px;
}

.settings-header span[b-ymbp60lach] {
font-size: 24px;
font-weight: bold;
}

.buttons[b-ymbp60lach] {
    width: 150px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
    margin-left: 15px;
}

.settings-body[b-ymbp60lach] {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.settings-body-buttons[b-ymbp60lach] {
    display: flex;
    flex-direction: row;
}

.inputs[b-ymbp60lach] {
    width: 400px;
    height: 35px;
    border-radius: 5px;
    background-color: rgb(203, 203, 203);
    border: 1px solid rgb(211, 211, 211);
    padding-left: 10px;
    cursor: pointer;
    margin-top: 20px;
}

    .inputs option[b-ymbp60lach] {
    background-color: white;
    }

.save-buttons[b-ymbp60lach] {
    width: 130px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    color: black;
    border-radius: 5px;
    border: 1px solid rgb(234, 234, 234);
    background-color: white;
    margin-top: 15px;
}

/***********VENTANAS POPUP*************/
.servicebox[b-ymbp60lach] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .servicebox h2[b-ymbp60lach] {
        font-weight: bold;
    }

.service-content[b-ymbp60lach] {
    width: 600px;
    border-radius: 7px;
    background-color: white;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0px 0px 4px rgb(217, 217, 217);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inputs[b-ymbp60lach] {
    width: 400px;
    height: 35px;
    border-radius: 5px;
    background-color: rgb(242, 242, 242);
    border: 1px solid rgb(211, 211, 211);
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

    .inputs:focus[b-ymbp60lach] {
        outline: none;
    }

.btnenviar[b-ymbp60lach] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

body[b-ymbp60lach] {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin: 0;
}

.checkbox-container[b-ymbp60lach] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-checkbox[b-ymbp60lach] {
    display: none; /* Oculta el checkbox nativo */
}

.checkbox-label[b-ymbp60lach] {
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Color del borde */
    border-radius: 3px;
    margin-right: 8px; /* Espacio entre el checkbox y el texto */
    cursor: pointer;
}

    .checkbox-label:hover[b-ymbp60lach] {
        background-color: #f0f0f0; /* Cambia el fondo al pasar el mouse */
    }

.custom-checkbox:checked + .checkbox-label[b-ymbp60lach] {
    background-color: rgb(68, 114, 196); /* Cambia el fondo cuando está marcado */
    border-color: rgb(68, 114, 196); /* Cambia el color del borde cuando está marcado */
}

.label-text[b-ymbp60lach] {
    user-select: none; /* Evita que el texto sea seleccionable */
    cursor: pointer;
}

/*******UPLOAD********/
.custum-file-upload[b-ymbp60lach] {
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e8e8e8;
    background-color: #212121;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px #e8e8e8;
}

    .custum-file-upload .icon[b-ymbp60lach] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .custum-file-upload .icon svg[b-ymbp60lach] {
            height: 80px;
            fill: #e8e8e8;
        }

    .custum-file-upload .text[b-ymbp60lach] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .custum-file-upload .text span[b-ymbp60lach] {
            font-weight: 400;
            color: #e8e8e8;
        }

    .custum-file-upload input[b-ymbp60lach] {
        display: none;
    }

@media only screen and (max-width: 768px) {
    .settings-header[b-ymbp60lach] {
        width: 100%;
        height: 150px;
        border-bottom: 1px solid rgb(204, 204, 204);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .profile-photo[b-ymbp60lach] {
        width: 50px;
        height: 50px;
        background-color: black;
        border-radius: 50%;
        cursor: pointer;
        margin-right: 0px;
    }

    .settings-header span[b-ymbp60lach] {
        font-size: 20px;
        font-weight: bold;
    }

    .settings-header div .buttons[b-ymbp60lach] {
        width: 100px;
        height: 30px;
        font-size: 12px;
        border: none;
        background-color: rgb(68, 114, 196);
        border-radius: 5px;
        color: white;
        margin-left: 0px;
    }

        .settings-header div .buttons:last-child[b-ymbp60lach] {
            margin-left: 15px;
        }

    .settings-body-buttons[b-ymbp60lach] {
        display: flex;
        flex-direction: column;
    }

        .settings-body-buttons .buttons[b-ymbp60lach] {
            width: 100%;
            height: 35px;
            font-size: 12px;
            border: none;
            background-color: rgb(68, 114, 196);
            border-radius: 5px;
            color: white;
            margin-left: 0px;
            margin-bottom: 10px;
        }

    .inputs[b-ymbp60lach] {
        width: 100%;
        height: 35px;
        border-radius: 5px;
        background-color: rgb(242, 242, 242);
        border: 1px solid rgb(211, 211, 211);
        padding-left: 10px;
        cursor: pointer;
        margin-bottom: 20px;
    }
}

/*****************************************************************************************************************/
*[b-ymbp60lach] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body[b-ymbp60lach] {
    background-color: #f5f6fa;
    color: #333;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.settings-container[b-ymbp60lach] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-section[b-ymbp60lach] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .profile-section img[b-ymbp60lach] {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #0066cc;
    }

.profile-info[b-ymbp60lach] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .profile-info h2[b-ymbp60lach] {
        font-size: 1.5rem;
        color: #0052a3;
    }

.button-group[b-ymbp60lach] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

button[b-ymbp60lach] {
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.95rem;
}

    button:hover[b-ymbp60lach] {
        background-color: #004a99;
    }

.section[b-ymbp60lach] {
    border-top: 1px solid #e1e1e1;
    padding-top: 1.5rem;
}

    .section h3[b-ymbp60lach] {
        margin-bottom: 1rem;
        color: #0052a3;
        font-size: 1.2rem;
    }

.credit-cards[b-ymbp60lach] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-item[b-ymbp60lach] {
    background-color: #e8f1fd;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

    .card-item span[b-ymbp60lach] {
        color: #333;
    }

.location-section select[b-ymbp60lach] {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    outline: none;
}

.save-btn[b-ymbp60lach] {
    margin-top: 1rem;
    background-color: #28a745;
}

    .save-btn:hover[b-ymbp60lach] {
        background-color: #218838;
    }

@media (max-width: 768px) {
    .settings-container[b-ymbp60lach] {
        padding: 1.5rem;
    }

    .profile-section[b-ymbp60lach] {
        flex-direction: column;
        align-items: center;
    }

    .profile-info[b-ymbp60lach] {
        align-items: center;
        text-align: center;
    }

    .button-group[b-ymbp60lach] {
        justify-content: center;
    }

    .card-item[b-ymbp60lach] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    body[b-ymbp60lach] {
        padding: 1rem;
    }

    .settings-container[b-ymbp60lach] {
        padding: 1rem;
    }

    button[b-ymbp60lach] {
        width: 100%;
        text-align: center;
    }
}
/* _content/Jobby/Pages/SignOptions.razor.rz.scp.css */
.container[b-e3l4dzzr0x] {
    width: 400px;
    height: 600px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .2s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-flow: row wrap;
    margin-top: 30px;
}

.rotate[b-e3l4dzzr0x] {
    /*transform: rotateY(180deg);*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(180deg);
}

.rotate1[b-e3l4dzzr0x] {
    transform: rotateY(180deg);
}

.icon[b-e3l4dzzr0x] {
    color: #555;
    position: absolute;
    top: 20%;
}

.icon1[b-e3l4dzzr0x] {
    color: #555;
    position: absolute;
    top: 20%;
    left: 32%;
}

.signcontent[b-e3l4dzzr0x] {
    margin-top: 20px;
    text-align: center;
}

.content1[b-e3l4dzzr0x] {
    margin-top: 20px;
    text-align: center;
}

.button[b-e3l4dzzr0x] {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**** botones ****/
.btnlink[b-e3l4dzzr0x] {
    text-align: center;
    width: 130px;
    padding: 10px 0;
    background-color: rgb(68, 114, 196);
    color: white;
    border: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 30%;
}

.switch[b-e3l4dzzr0x] {
    text-align: center;
    width: 180px;
    padding: 10px 0;
    background-color: orange;
    color: white;
    border: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 20%;
}

.btnlink1[b-e3l4dzzr0x] {
    text-align: center;
    width: 130px;
    padding: 10px 0;
    background-color: rgb(68, 114, 196);
    color: white;
    border: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 30%;
}

.switch1[b-e3l4dzzr0x] {
    text-align: center;
    width: 180px;
    padding: 10px 0;
    background-color: orange;
    color: white;
    border: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 20%;
}

@media only screen and (max-width: 768px) {
    .container[b-e3l4dzzr0x] {
        width: 100%;
        height: 100dvh;
        margin-top: 0px;
        background-color: rgba(230, 230, 230, .8);
    }

}
/* _content/Jobby/Pages/SignUp.razor.rz.scp.css */
main[b-1l1ems7rha] {
    width: 100%;
    height: 100dvh;
    /*background-color: black;*/
    display: flex;
    flex-direction: row;
}

.sign-images[b-1l1ems7rha] {
    width: 50%;
    height: 100dvh;
    /*background-color: gray;*/
}

.sign-content[b-1l1ems7rha] {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100dvh;
    /*background-color: white;*/
    align-items: center;
    padding: 8% 30px;
}

.letter1[b-1l1ems7rha] {
    font-size: 46px;
    font-family: 'Signika Negative', sans-serif;
    font-weight: bold;
}

.letter2[b-1l1ems7rha] {
    color: rgb(170, 170, 170);
}

.letter3[b-1l1ems7rha] {
    font-size: 14px;
    margin-bottom: 10px;
}

.sign-box[b-1l1ems7rha] {
    display: flex;
    flex-direction: column;
}

input[b-1l1ems7rha] {
    width: 600px;
    height: 50px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    border: none;
    padding-left: 30px;
}

    input:focus[b-1l1ems7rha] {
        outline: none;
    }

button[b-1l1ems7rha] {
    width: 550px;
    height: 50px;
    border-radius: 25px;
    background-color: rgb(68, 114, 196);
    color: white;
    border: none;
    margin: 0 auto;
    margin-bottom: 20px;
}

.icon[b-1l1ems7rha] {
    position: absolute;
    right: 25px; /* Ajusta la posición del ícono */
    top: 38%; /* Ajusta la posición vertical */
    transform: translateY(-50%);
    pointer-events: none; /* Para que el ícono no sea clickeable */
}

.jobox[b-1l1ems7rha] {
width: 100%;
height: 100dvh;
background-color: rgba(0, 0, 0, .3);
position: absolute;
z-index: 100;
}

.selectjob[b-1l1ems7rha] {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
width: 400px;
height: 300px;
background-color: white;
border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

    .selectjob select[b-1l1ems7rha] {
        margin: 20px 0px;
        width: 300px;
        height: 50px;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, .3);
        border-radius: 15px;
        padding-left: 15px;
        cursor: pointer;
    }

@media only screen and (max-width: 768px) {
    .sign-images[b-1l1ems7rha] {
        display: none;
    }

    .sign-content[b-1l1ems7rha] {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100dvh;
        /*background-color: white;*/
        align-items: center;
        padding: 25% 30px;
    }

    .letter1[b-1l1ems7rha] {
        font-size: 38px;
        font-family: 'Signika Negative', sans-serif;
        font-weight: bold;
    }

    .letter2[b-1l1ems7rha] {
        color: rgb(170, 170, 170);
        font-size: 14px;
    }

    .letter3[b-1l1ems7rha] {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .sign-box[b-1l1ems7rha] {
        display: flex;
        flex-direction: column;
    }

    input[b-1l1ems7rha] {
        width: 350px;
        height: 50px;
        margin-bottom: 20px;
        background-color: rgb(245, 245, 245);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 25px;
        border: none;
        padding-left: 30px;
    }

        input:focus[b-1l1ems7rha] {
            outline: none;
        }

    button[b-1l1ems7rha] {
        width: 330px;
        height: 50px;
        border-radius: 25px;
        background-color: rgb(68, 114, 196);
        color: white;
        border: none;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .icon[b-1l1ems7rha] {
        position: absolute;
        right: 7%; /* Ajusta la posición del ícono */
        top: 38%; /* Ajusta la posición vertical */
        transform: translateY(-50%);
        pointer-events: none; /* Para que el ícono no sea clickeable */
    }
}
/* _content/Jobby/Pages/TermsPage.razor.rz.scp.css */
*[b-5qebc4yfr8] {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.body[b-5qebc4yfr8] {
    margin: 0;
    padding: 0;
    height: 100dvh;
    overflow: hidden;
    display: flex;
}

/* Sidebar fijo */
.sidebar[b-5qebc4yfr8] {
    width: 250px;
    height: 100dvh;
    background-color: #f1f3f4;
    padding: 10px;
    position: fixed;
    left: 0;
    top: 0;
}

    .sidebar ul[b-5qebc4yfr8] {
        list-style: none;
        padding: 0;
    }

        .sidebar ul li[b-5qebc4yfr8] {
            padding: 10px;
            cursor: pointer;
        }

            .sidebar ul li a[b-5qebc4yfr8] {
                color: black;
                text-decoration: none;
            }

/* Header fijo */
header[b-5qebc4yfr8] {
    position: fixed;
    top: 0;
    left: 250px; /* Empieza después del sidebar */
    width: calc(100% - 250px);
    height: 5dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.logo[b-5qebc4yfr8] {
    cursor: pointer;
    width: 100px;
    height: 30px;
    background: url('/images/logo/logo home.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 4%;
}

nav ul[b-5qebc4yfr8] {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

    nav ul li[b-5qebc4yfr8] {
        cursor: pointer;
    }

.active[b-5qebc4yfr8] {
    border-bottom: 2px solid blue;
}

.login-btn[b-5qebc4yfr8] {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
}

/* Contenido principal ajustado */
main[b-5qebc4yfr8] {
    margin-left: 250px; /* Se desplaza por el sidebar */
    padding: 20px;
    padding-top: 6dvh; /* Evita que se superponga con el header */
    height: calc(100dvh - 3dvh);
    overflow-y: auto; /* Permite desplazamiento si el contenido es largo */
    background: #fff;
}

.content-section[b-5qebc4yfr8] {
    padding: 15px 20px;
}

    .content p[b-5qebc4yfr8] {
        width: 80%;
        text-align: justify;
    }

.privacy-review[b-5qebc4yfr8] {
    margin-top: 20px;
    background-color: #e8f0fe;
    padding: 10px;
    border-radius: 5px;
}

footer[b-5qebc4yfr8] {
    margin-top: 20px;
    font-size: 14px;
    color: gray;
}

    footer a[b-5qebc4yfr8] {
        color: #4285f4;
        text-decoration: none;
    }
/* _content/Jobby/Shared/BoxService1.razor.rz.scp.css */
/*CAJAS DE SERVICIOS*/

.boxservice-bg[b-01y5ul28s8] {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .7);
}

.boxservice[b-01y5ul28s8] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 40px;
}

.letter1[b-01y5ul28s8] {
    font-size: 14px;
    color: gray;
}

.buttons[b-01y5ul28s8] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

h4 span[b-01y5ul28s8] {
    font-size: 16px;
}

h4[b-01y5ul28s8] {
    font-size: 20px;
}
/* _content/Jobby/Shared/BoxService2.razor.rz.scp.css */
/*CAJAS DE SERVICIOS*/

.boxservice-bg[b-nk2ud1imw6] {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .7);
}

.boxservice[b-nk2ud1imw6] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 40px;
}

.letter1[b-nk2ud1imw6] {
    font-size: 14px;
    color: gray;
}

.buttons[b-nk2ud1imw6] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

h4 span[b-nk2ud1imw6] {
    font-size: 16px;
}

h4[b-nk2ud1imw6] {
    font-size: 20px;
}
/* _content/Jobby/Shared/BoxService3.razor.rz.scp.css */
/*CAJAS DE SERVICIOS*/

.boxservice-bg[b-cueeumiuf4] {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .7);
}

.boxservice[b-cueeumiuf4] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 40px;
}

.letter1[b-cueeumiuf4] {
    font-size: 14px;
    color: gray;
}

.buttons[b-cueeumiuf4] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

h4 span[b-cueeumiuf4] {
    font-size: 16px;
}

h4[b-cueeumiuf4] {
    font-size: 20px;
}
/* _content/Jobby/Shared/BoxService4.razor.rz.scp.css */
/*CAJAS DE SERVICIOS*/

.boxservice-bg[b-ors3rug4gj] {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .7);
}

.boxservice[b-ors3rug4gj] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 40px;
}

.letter1[b-ors3rug4gj] {
    font-size: 14px;
    color: gray;
}

.buttons[b-ors3rug4gj] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

h4 span[b-ors3rug4gj] {
    font-size: 16px;
}

h4[b-ors3rug4gj] {
    font-size: 20px;
}

/* _content/Jobby/Shared/BoxService5.razor.rz.scp.css */
/*CAJAS DE SERVICIOS*/

.boxservice-bg[b-8u5smmy35g] {
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .7);
}

.boxservice[b-8u5smmy35g] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 40px;
}

.letter1[b-8u5smmy35g] {
    font-size: 14px;
    color: gray;
}

.buttons[b-8u5smmy35g] {
    width: 130px;
    height: 40px;
    font-size: 14px;
    border: none;
    background-color: rgb(68, 114, 196);
    border-radius: 5px;
    color: white;
}

h4 span[b-8u5smmy35g] {
    font-size: 16px;
}

h4[b-8u5smmy35g] {
    font-size: 20px;
}

/* _content/Jobby/Shared/DeliveryOrder.razor.rz.scp.css */
/* ===============================
   BASE
================================ */
.servicebox[b-ohee9qlt03] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .servicebox h2[b-ohee9qlt03] {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
    }

/* ===============================
   CARD PRINCIPAL
================================ */
.service-content[b-ohee9qlt03] {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   INPUTS
================================ */
.inputs[b-ohee9qlt03] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0 14px;
    font-size: 15px;
    background: #F9FAFB;
    transition: border .2s, box-shadow .2s;
}

    .inputs:focus[b-ohee9qlt03] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        background: white;
    }

/* ===============================
   CHECKBOX MODERNO
================================ */
.checkbox-container[b-ohee9qlt03] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox[b-ohee9qlt03] {
    display: none;
}

.checkbox-label[b-ohee9qlt03] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    cursor: pointer;
    transition: all .2s;
}

.custom-checkbox:checked + .checkbox-label[b-ohee9qlt03] {
    background: #2563EB;
    border-color: #2563EB;
}

.label-text[b-ohee9qlt03] {
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

/* ===============================
   BOTÓN PRINCIPAL
================================ */
.btnenviar[b-ohee9qlt03] {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#2563EB,#0EA5E9);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

    .btnenviar:hover[b-ohee9qlt03] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(37,99,235,.35);
    }

    .btnenviar:active[b-ohee9qlt03] {
        transform: translateY(0);
    }

/* ===============================
   MODAL / OVERLAY
================================ */
.message-background[b-ohee9qlt03] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ===============================
   MAPA
================================ */
.map[b-ohee9qlt03] {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

/* ===============================
   LISTADO EMPRESAS
================================ */
.enterprises-content[b-ohee9qlt03] {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.enterprises-content-header[b-ohee9qlt03] {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.enterprises-content-body[b-ohee9qlt03] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
    overflow-y: auto;
}

/* ===============================
   CONFIRMACIÓN DE ORDEN
================================ */
.order-confirmation-card[b-ohee9qlt03] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    padding: 18px;
}

.card-header h3[b-ohee9qlt03] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-header .sub[b-ohee9qlt03] {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.card-body[b-ohee9qlt03] {
    margin-top: 10px;
}

.row[b-ohee9qlt03] {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

    .row:last-child[b-ohee9qlt03] {
        border-bottom: none;
    }

    .row .label[b-ohee9qlt03] {
        font-weight: 600;
        color: #334155;
    }

    .row .value[b-ohee9qlt03] {
        font-weight: 600;
        color: #0F172A;
        max-width: 60%;
        text-align: right;
    }

    .row.note .value[b-ohee9qlt03] {
        font-style: italic;
        color: #64748B;
    }

.fare-amt[b-ohee9qlt03] {
    font-size: 18px;
    font-weight: 800;
}

/* ===============================
   ACCIONES CONFIRMAR
================================ */
.card-actions[b-ohee9qlt03] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn[b-ohee9qlt03] {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-back[b-ohee9qlt03] {
    background: #F1F5F9;
    color: #334155;
}

.btn-confirm[b-ohee9qlt03] {
    background: linear-gradient(135deg,#0EA5E9,#22C55E);
    color: white;
}

/* ===============================
   MOBILE (IPHONE / ANDROID)
================================ */
@media (max-width: 480px) {

    .service-content[b-ohee9qlt03] {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .servicebox h2[b-ohee9qlt03] {
        font-size: 22px;
        text-align: center;
    }

    .map[b-ohee9qlt03] {
        height: 220px;
    }

    .order-confirmation-card[b-ohee9qlt03] {
        border-radius: 16px;
        padding: 14px;
    }

    .card-actions[b-ohee9qlt03] {
        flex-direction: column-reverse;
    }

    .btn[b-ohee9qlt03] {
        width: 100%;
    }
}
/* _content/Jobby/Shared/HelpChat.razor.rz.scp.css */
@media (prefers-color-scheme: light) {
    :root[b-sjfw29rr38] {
        --bg: #f5f7fb;
        --panel: #ffffff;
        --panel-2: #f8fafc;
        --text: #0f172a;
        --muted: #64748b;
        --border: #e2e8f0;
        --in: #f1f5f9;
        --out: #2563eb;
        --out-text: #fff;
    }
}

*[b-sjfw29rr38] {
    box-sizing: border-box
}

html[b-sjfw29rr38], body[b-sjfw29rr38] {
    height: 100%
}

body[b-sjfw29rr38] {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.chat-shell[b-sjfw29rr38] {
    width: 100%;
    max-width: 1100px;
    height: 80dvh;
    min-height: 560px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
}
/* Sidebar (opcional para info del ticket) */

.sidebar[b-sjfw29rr38] {
    background: white;
    /*border: 1px solid var(--border);*/
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    height: 80%;
}

.sidebar-header[b-sjfw29rr38] {
    padding: 18px 18px;
    /*border-bottom: 1px solid var(--border);*/
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgb(140, 164, 234);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: none;
}

.brand[b-sjfw29rr38] {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #22d3ee);
    color: #fff;
    font-weight: 700
}

.sidebar-title[b-sjfw29rr38] {
    font-weight: 700;
    letter-spacing: .2px
}

.sidebar-body[b-sjfw29rr38] {
    padding: 16px;
    overflow: auto
}

.ticket-card[b-sjfw29rr38] {
    background: var(--primary);
    /*border: 1px solid var(--border);*/
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 12px
}

    .ticket-card h4[b-sjfw29rr38] {
        margin: 0 0 6px;
        font-size: 14px
    }

.meta[b-sjfw29rr38] {
    color: white;
    font-size: 12px
}
/* Chat panel */

.chat-panel[b-sjfw29rr38] {
    /*background: var(--panel);*/
    background: white;
    /*border: 1px solid var(--border);*/
    border-radius: 20px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    height: 80%;
}

.chat-header[b-sjfw29rr38] {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(140, 164, 234);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: none;
}

.agent[b-sjfw29rr38] {
    display: flex;
    align-items: center;
    gap: 12px
}

.avatar[b-sjfw29rr38] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, var(--primary));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.name[b-sjfw29rr38] {
    font-weight: 600
}

.status[b-sjfw29rr38] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px
}

.dot[b-sjfw29rr38] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 20%, transparent)
}

.actions[b-sjfw29rr38] {
    display: flex;
    align-items: center;
    gap: 8px
}

.btn[b-sjfw29rr38] {
    appearance: none;
    border: 1px solid var(--border);
    background: var(--panel-2);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer
}

    .btn:hover[b-sjfw29rr38] {
        filter: brightness(1.08)
    }
/* Messages */

.messages[b-sjfw29rr38] {
    padding: 18px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.day-sep[b-sjfw29rr38] {
    align-self: center;
    font-size: 12px;
    color: white;
    background: var(--primary);
    /*border: 1px solid var(--border);*/
    padding: 6px 10px;
    border-radius: 999px;
    margin: 10px 0 4px
}

.msg[b-sjfw29rr38] {
    display: flex;
    gap: 10px;
    max-width: 80%
}

    .msg.agent[b-sjfw29rr38] {
        align-self: flex-start
    }

    .msg.user[b-sjfw29rr38] {
        align-self: flex-end;
        flex-direction: row-reverse
    }

.bubble[b-sjfw29rr38] {
    padding: 10px 12px;
    border-radius: 16px;
    position: relative;
    line-height: 1.35;
    box-shadow: 0 2px 0 0 rgba(0,0,0,.06)
}

.agent .bubble[b-sjfw29rr38] {
    background: rgb(231, 237, 251);
    /*border: 1px solid var(--border)*/
}

.user .bubble[b-sjfw29rr38] {
    background: var(--out);
    color: var(--out-text)
}

.time[b-sjfw29rr38] {
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px
}

.user .time[b-sjfw29rr38] {
    text-align: right
}

.quick-replies[b-sjfw29rr38] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.chip[b-sjfw29rr38] {
    font-size: 12px;
    border: 1px solid var(--border);
    background: var(--panel-2);
    padding: 6px 10px;
    border-radius: 999px
}
/* typing indicator */

.typing[b-sjfw29rr38] {
    display: inline-flex;
    gap: 4px;
    align-items: center
}

.dot-typing[b-sjfw29rr38] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    opacity: .6;
    animation: bounce-b-sjfw29rr38 1.2s infinite ease-in-out
}

    .dot-typing:nth-child(2)[b-sjfw29rr38] {
        animation-delay: .2s
    }

    .dot-typing:nth-child(3)[b-sjfw29rr38] {
        animation-delay: .4s
    }

@keyframes bounce-b-sjfw29rr38 {
    0%,80%,100% {
        transform: scale(0.8)
    }

    40% {
        transform: scale(1)
    }
}
/* Composer */

.composer[b-sjfw29rr38] {
    border-top: 1px solid var(--border);
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
/*    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--panel) 80%, black 10%));
    background: white;*/
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: none;
    background: rgb(238, 238, 238);
}

.field[b-sjfw29rr38] {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    background: white;
    /*border: 1px solid var(--border);*/
    border-radius: 16px;
    padding: 8px
}

.field input[b-sjfw29rr38] {
    flex: 1;
    resize: none;
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font: 400 14px/1.4 "Inter", system-ui;
    max-height: 120px
}

.icon-btn[b-sjfw29rr38] {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--panel);
    cursor: pointer
}

.send[b-sjfw29rr38] {
    padding: 10px 16px;
    border: none;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    margin-left:5px
}

    .send:hover[b-sjfw29rr38] {
        filter: brightness(1.06)
    }
/* Scrollbar nice */

.messages[b-sjfw29rr38]::-webkit-scrollbar {
    width: 10px
}

.messages[b-sjfw29rr38]::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px
}
/* Responsive */

@media (max-width: 960px) {
    .chat-shell[b-sjfw29rr38] {
        grid-template-columns: 1fr;
        height: 92dvh
    }

    .sidebar[b-sjfw29rr38] {
        display: none
    }

    .chat-panel[b-sjfw29rr38] {
        height: 100%;
        margin-top: 6%
    }
}

.background-images[b-sjfw29rr38] {
    width: 100%;
    height: 100dvh;
    position: absolute;
    object-fit: cover;
    z-index: -1;
}

@media (max-width: 768px) {
    .background-images[b-sjfw29rr38] {
        object-position: center top; /* enfoca la parte superior */
    }
}

.btn-whatsapp[b-sjfw29rr38] {
    background-color: #25D366; /* Verde oficial de WhatsApp */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-whatsapp:hover[b-sjfw29rr38] {
        background-color: #1ebe57; /* Un tono más oscuro para el hover */
        color: white;
    }
/* _content/Jobby/Shared/HomeLayout.razor.rz.scp.css */
.page[b-bfwt8jr2o0] {
    position: relative;
    display: flex;
    flex-direction: row;
}

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

.header-options[b-bfwt8jr2o0] {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.servicebox-options-photo[b-bfwt8jr2o0] {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: black;
    margin-right: 20px;
}

.header-options i[b-bfwt8jr2o0] {
font-size: 20px;
margin-right: 10px;
color: rgb(200, 200, 200);
cursor: pointer;
}

.iconresponsive[b-bfwt8jr2o0]{
    display: none;
}

.top-row[b-bfwt8jr2o0] {
    /*background-color: #f7f7f7;*/
    border-bottom: 3px solid rgb(140, 140, 140);
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
    margin: 0 30px;
    position: relative;
}

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

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

.sidebar[b-bfwt8jr2o0] {
    position: relative;
    height: 100dvh;
    border-right: 2px solid rgb(140, 140, 140);
}

.sidebar-top[b-bfwt8jr2o0] {
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
}

.sidebar-content[b-bfwt8jr2o0] {
    display: flex;
    flex-direction: column;
}

.sidebar-options[b-bfwt8jr2o0] {
    height: 3.5rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    /*border-bottom: 1px solid #d6d5d5;*/
    padding: 0px 70px;
    cursor: pointer;
}

.sidebar-options i[b-bfwt8jr2o0]{
    margin-right: 10px;
}

    .sidebar-options:hover[b-bfwt8jr2o0] {
        background-color: rgb(68, 114, 196);
        color: white;
    }

.main-content[b-bfwt8jr2o0] {
padding: 30px;
}

.padding[b-bfwt8jr2o0] {
    padding: 36px;
}

@media only screen and (max-width: 768px) {
    .header-options[b-bfwt8jr2o0] {
        display: none;
    }

    .iconresponsive[b-bfwt8jr2o0] {
        display: block;
        cursor: pointer;
    }

    .padding[b-bfwt8jr2o0] {
        padding: 0px;
        padding-bottom: 60px;
    }
}
/* _content/Jobby/Shared/LimpiezaOrder.razor.rz.scp.css */
/* ===============================
   BASE
================================ */
.servicebox[b-aafijtf0yz] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .servicebox h2[b-aafijtf0yz] {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
    }

/* ===============================
   CARD PRINCIPAL
================================ */
.service-content[b-aafijtf0yz] {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   INPUTS
================================ */
.inputs[b-aafijtf0yz] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0 14px;
    font-size: 15px;
    background: #F9FAFB;
    transition: border .2s, box-shadow .2s;
}

    .inputs:focus[b-aafijtf0yz] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        background: white;
    }

/* ===============================
   CHECKBOX MODERNO
================================ */
.checkbox-container[b-aafijtf0yz] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox[b-aafijtf0yz] {
    display: none;
}

.checkbox-label[b-aafijtf0yz] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    cursor: pointer;
    transition: all .2s;
}

.custom-checkbox:checked + .checkbox-label[b-aafijtf0yz] {
    background: #2563EB;
    border-color: #2563EB;
}

.label-text[b-aafijtf0yz] {
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

/* ===============================
   BOTÓN PRINCIPAL
================================ */
.btnenviar[b-aafijtf0yz] {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#2563EB,#0EA5E9);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

    .btnenviar:hover[b-aafijtf0yz] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(37,99,235,.35);
    }

    .btnenviar:active[b-aafijtf0yz] {
        transform: translateY(0);
    }

/* ===============================
   MODAL / OVERLAY
================================ */
.message-background[b-aafijtf0yz] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ===============================
   MAPA
================================ */
.map[b-aafijtf0yz] {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

/* ===============================
   LISTADO EMPRESAS
================================ */
.enterprises-content[b-aafijtf0yz] {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.enterprises-content-header[b-aafijtf0yz] {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.enterprises-content-body[b-aafijtf0yz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
    overflow-y: auto;
}

/* ===============================
   CONFIRMACIÓN DE ORDEN
================================ */
.order-confirmation-card[b-aafijtf0yz] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    padding: 18px;
}

.card-header h3[b-aafijtf0yz] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-header .sub[b-aafijtf0yz] {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.card-body[b-aafijtf0yz] {
    margin-top: 10px;
}

.row[b-aafijtf0yz] {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

    .row:last-child[b-aafijtf0yz] {
        border-bottom: none;
    }

    .row .label[b-aafijtf0yz] {
        font-weight: 600;
        color: #334155;
    }

    .row .value[b-aafijtf0yz] {
        font-weight: 600;
        color: #0F172A;
        max-width: 60%;
        text-align: right;
    }

    .row.note .value[b-aafijtf0yz] {
        font-style: italic;
        color: #64748B;
    }

.fare-amt[b-aafijtf0yz] {
    font-size: 18px;
    font-weight: 800;
}

/* ===============================
   ACCIONES CONFIRMAR
================================ */
.card-actions[b-aafijtf0yz] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn[b-aafijtf0yz] {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-back[b-aafijtf0yz] {
    background: #F1F5F9;
    color: #334155;
}

.btn-confirm[b-aafijtf0yz] {
    background: linear-gradient(135deg,#0EA5E9,#22C55E);
    color: white;
}

/* ===============================
   MOBILE (IPHONE / ANDROID)
================================ */
@media (max-width: 480px) {

    .service-content[b-aafijtf0yz] {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .servicebox h2[b-aafijtf0yz] {
        font-size: 22px;
        text-align: center;
    }

    .map[b-aafijtf0yz] {
        height: 220px;
    }

    .order-confirmation-card[b-aafijtf0yz] {
        border-radius: 16px;
        padding: 14px;
    }

    .card-actions[b-aafijtf0yz] {
        flex-direction: column-reverse;
    }

    .btn[b-aafijtf0yz] {
        width: 100%;
    }
}
/* _content/Jobby/Shared/PinturaOrder.razor.rz.scp.css */
/* ===============================
   BASE
================================ */
.servicebox[b-6r0f1z82zq] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .servicebox h2[b-6r0f1z82zq] {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
    }

/* ===============================
   CARD PRINCIPAL
================================ */
.service-content[b-6r0f1z82zq] {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   INPUTS
================================ */
.inputs[b-6r0f1z82zq] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0 14px;
    font-size: 15px;
    background: #F9FAFB;
    transition: border .2s, box-shadow .2s;
}

    .inputs:focus[b-6r0f1z82zq] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        background: white;
    }

/* ===============================
   CHECKBOX MODERNO
================================ */
.checkbox-container[b-6r0f1z82zq] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox[b-6r0f1z82zq] {
    display: none;
}

.checkbox-label[b-6r0f1z82zq] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    cursor: pointer;
    transition: all .2s;
}

.custom-checkbox:checked + .checkbox-label[b-6r0f1z82zq] {
    background: #2563EB;
    border-color: #2563EB;
}

.label-text[b-6r0f1z82zq] {
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

/* ===============================
   BOTÓN PRINCIPAL
================================ */
.btnenviar[b-6r0f1z82zq] {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#2563EB,#0EA5E9);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

    .btnenviar:hover[b-6r0f1z82zq] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(37,99,235,.35);
    }

    .btnenviar:active[b-6r0f1z82zq] {
        transform: translateY(0);
    }

/* ===============================
   MODAL / OVERLAY
================================ */
.message-background[b-6r0f1z82zq] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ===============================
   MAPA
================================ */
.map[b-6r0f1z82zq] {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

/* ===============================
   LISTADO EMPRESAS
================================ */
.enterprises-content[b-6r0f1z82zq] {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.enterprises-content-header[b-6r0f1z82zq] {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.enterprises-content-body[b-6r0f1z82zq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
    overflow-y: auto;
}

/* ===============================
   CONFIRMACIÓN DE ORDEN
================================ */
.order-confirmation-card[b-6r0f1z82zq] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    padding: 18px;
}

.card-header h3[b-6r0f1z82zq] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-header .sub[b-6r0f1z82zq] {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.card-body[b-6r0f1z82zq] {
    margin-top: 10px;
}

.row[b-6r0f1z82zq] {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

    .row:last-child[b-6r0f1z82zq] {
        border-bottom: none;
    }

    .row .label[b-6r0f1z82zq] {
        font-weight: 600;
        color: #334155;
    }

    .row .value[b-6r0f1z82zq] {
        font-weight: 600;
        color: #0F172A;
        max-width: 60%;
        text-align: right;
    }

    .row.note .value[b-6r0f1z82zq] {
        font-style: italic;
        color: #64748B;
    }

.fare-amt[b-6r0f1z82zq] {
    font-size: 18px;
    font-weight: 800;
}

/* ===============================
   ACCIONES CONFIRMAR
================================ */
.card-actions[b-6r0f1z82zq] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn[b-6r0f1z82zq] {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-back[b-6r0f1z82zq] {
    background: #F1F5F9;
    color: #334155;
}

.btn-confirm[b-6r0f1z82zq] {
    background: linear-gradient(135deg,#0EA5E9,#22C55E);
    color: white;
}

/* ===============================
   MOBILE (IPHONE / ANDROID)
================================ */
@media (max-width: 480px) {

    .service-content[b-6r0f1z82zq] {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .servicebox h2[b-6r0f1z82zq] {
        font-size: 22px;
        text-align: center;
    }

    .map[b-6r0f1z82zq] {
        height: 220px;
    }

    .order-confirmation-card[b-6r0f1z82zq] {
        border-radius: 16px;
        padding: 14px;
    }

    .card-actions[b-6r0f1z82zq] {
        flex-direction: column-reverse;
    }

    .btn[b-6r0f1z82zq] {
        width: 100%;
    }
}
/* _content/Jobby/Shared/PlomeriaOrder.razor.rz.scp.css */
/* ===============================
   BASE
================================ */
.servicebox[b-ubwr8yy0ue] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .servicebox h2[b-ubwr8yy0ue] {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
    }

/* ===============================
   CARD PRINCIPAL
================================ */
.service-content[b-ubwr8yy0ue] {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   INPUTS
================================ */
.inputs[b-ubwr8yy0ue] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0 14px;
    font-size: 15px;
    background: #F9FAFB;
    transition: border .2s, box-shadow .2s;
}

    .inputs:focus[b-ubwr8yy0ue] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        background: white;
    }

/* ===============================
   CHECKBOX MODERNO
================================ */
.checkbox-container[b-ubwr8yy0ue] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox[b-ubwr8yy0ue] {
    display: none;
}

.checkbox-label[b-ubwr8yy0ue] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    cursor: pointer;
    transition: all .2s;
}

.custom-checkbox:checked + .checkbox-label[b-ubwr8yy0ue] {
    background: #2563EB;
    border-color: #2563EB;
}

.label-text[b-ubwr8yy0ue] {
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

/* ===============================
   BOTÓN PRINCIPAL
================================ */
.btnenviar[b-ubwr8yy0ue] {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#2563EB,#0EA5E9);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

    .btnenviar:hover[b-ubwr8yy0ue] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(37,99,235,.35);
    }

    .btnenviar:active[b-ubwr8yy0ue] {
        transform: translateY(0);
    }

/* ===============================
   MODAL / OVERLAY
================================ */
.message-background[b-ubwr8yy0ue] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ===============================
   MAPA
================================ */
.map[b-ubwr8yy0ue] {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

/* ===============================
   LISTADO EMPRESAS
================================ */
.enterprises-content[b-ubwr8yy0ue] {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.enterprises-content-header[b-ubwr8yy0ue] {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.enterprises-content-body[b-ubwr8yy0ue] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
    overflow-y: auto;
}

/* ===============================
   CONFIRMACIÓN DE ORDEN
================================ */
.order-confirmation-card[b-ubwr8yy0ue] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    padding: 18px;
}

.card-header h3[b-ubwr8yy0ue] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-header .sub[b-ubwr8yy0ue] {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.card-body[b-ubwr8yy0ue] {
    margin-top: 10px;
}

.row[b-ubwr8yy0ue] {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

    .row:last-child[b-ubwr8yy0ue] {
        border-bottom: none;
    }

    .row .label[b-ubwr8yy0ue] {
        font-weight: 600;
        color: #334155;
    }

    .row .value[b-ubwr8yy0ue] {
        font-weight: 600;
        color: #0F172A;
        max-width: 60%;
        text-align: right;
    }

    .row.note .value[b-ubwr8yy0ue] {
        font-style: italic;
        color: #64748B;
    }

.fare-amt[b-ubwr8yy0ue] {
    font-size: 18px;
    font-weight: 800;
}

/* ===============================
   ACCIONES CONFIRMAR
================================ */
.card-actions[b-ubwr8yy0ue] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn[b-ubwr8yy0ue] {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-back[b-ubwr8yy0ue] {
    background: #F1F5F9;
    color: #334155;
}

.btn-confirm[b-ubwr8yy0ue] {
    background: linear-gradient(135deg,#0EA5E9,#22C55E);
    color: white;
}

/* ===============================
   MOBILE (IPHONE / ANDROID)
================================ */
@media (max-width: 480px) {

    .service-content[b-ubwr8yy0ue] {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .servicebox h2[b-ubwr8yy0ue] {
        font-size: 22px;
        text-align: center;
    }

    .map[b-ubwr8yy0ue] {
        height: 220px;
    }

    .order-confirmation-card[b-ubwr8yy0ue] {
        border-radius: 16px;
        padding: 14px;
    }

    .card-actions[b-ubwr8yy0ue] {
        flex-direction: column-reverse;
    }

    .btn[b-ubwr8yy0ue] {
        width: 100%;
    }
}
/* _content/Jobby/Shared/PoliticsLayout.razor.rz.scp.css */
/* _content/Jobby/Shared/PrincipalLayout.razor.rz.scp.css */
header[b-uhucw28nkc] {
    width: 100%;
    padding: 10px 4%;
    color: white;
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: row;
    z-index: 2;
}

main[b-uhucw28nkc] {
    width: 100%;
    height: 100dvh;
}

.header-options[b-uhucw28nkc] {
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-options-responsive[b-uhucw28nkc] {
    display: none;
}

.options[b-uhucw28nkc] {
    cursor: pointer;
    margin-right: 40px;
    font-size: 28px;
    font-weight: bold;
    transition: 1s ease;
}

    .options:hover[b-uhucw28nkc] {
        color: #a2dfff;
    }

    .options:last-child[b-uhucw28nkc] {
        margin-right: 0px;
    }

.menu-options[b-uhucw28nkc] {
    display: none;
}

@media only screen and (max-width: 768px) {
    header[b-uhucw28nkc] {
        width: 100%;
        padding: 10px 4%;
        position: fixed;
        display: flex;
        flex-direction: row;
        z-index: 2;
    }

    main[b-uhucw28nkc] {
        width: 100%;
        height: 100dvh;
    }

    .header-options[b-uhucw28nkc] {
        display: none;
    }

    .header-options-responsive[b-uhucw28nkc] {
        display: block;
        font-size: 32px;
        position: absolute;
        right: 6%;
    }

    .options[b-uhucw28nkc] {
        cursor: pointer;
        margin-right: 40px;
        font-size: 28px;
        font-weight: bold;
        transition: 1s ease;
    }

        .options:hover[b-uhucw28nkc] {
            color: #a2dfff;
        }

        .options:last-child[b-uhucw28nkc] {
            margin-right: 0px;
        }

    .menu-options[b-uhucw28nkc] {
        width: 100%;
        height: 100%;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
    }

    .option[b-uhucw28nkc] {
        font-weight: bold;
        font-size: 20px;
        height: 80px;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        display: flex;
        align-items: center;
        cursor: pointer;
        padding-left: 30px;
    }

        .option:last-child[b-uhucw28nkc] {
            border-bottom: none;
        }

        .option i[b-uhucw28nkc] {
            margin-right: 15px;
        }
}
/* _content/Jobby/Shared/ResponsiveMenu.razor.rz.scp.css */
.menuresponsive[b-fmohqr1gzu] {
    display: none;
}

@media only screen and (max-width: 768px) {
    .menuresponsive[b-fmohqr1gzu] {
        display: block;
        background-color: white;
        width: 100%;
        height: 60px;
        position: fixed;
        bottom: 0;
        left: 0;
        box-shadow: 0px -3px 10px rgb(0, 0, 0, .3);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .header-options[b-fmohqr1gzu] {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-options i[b-fmohqr1gzu] {
            font-size: 24px;
            color: rgb(68, 114, 196);
            cursor: pointer;
        }

    .servicebox-options-photo[b-fmohqr1gzu] {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        background-color: rgb(68, 114, 196);
        margin: 0px 30px;
    }
}
/* _content/Jobby/Shared/SecondLayout.razor.rz.scp.css */
header[b-ho6jh8slcm] {
    width: 100%;
    padding: 10px 4%;
    background-color: transparent;
    color: white;
    position: fixed;
    display: flex;
    flex-direction: row;
    z-index: 2;
}

main[b-ho6jh8slcm] {
    width: 100%;
    height: 100dvh;
}

.header-options[b-ho6jh8slcm] {
    height: 60px;
    position: absolute;
    right: 4%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-options-responsive[b-ho6jh8slcm] {
    display: none;

}

.options[b-ho6jh8slcm] {
    cursor: pointer;
    margin-right: 40px;
    font-size: 28px;
    font-weight: bold;
    transition: 1s ease;
}

    .options:hover[b-ho6jh8slcm] {
        color: #a2dfff;
    }

    .options:last-child[b-ho6jh8slcm] {
        margin-right: 0px;
    }

.menu-options[b-ho6jh8slcm] {
    display: none;
}
@media only screen and (max-width: 768px) {
    header[b-ho6jh8slcm] {
        background-color: transparent;
        width: 100%;
        padding: 10px 4%;
        position: fixed;
        display: flex;
        flex-direction: row;
        z-index: 2;
    }

    main[b-ho6jh8slcm] {
        width: 100%;
        height: 100dvh;
    }

    .logo[b-ho6jh8slcm] {
        cursor: pointer;
        width: 200px;
        height: 40px;
        background: url('/images/logo/logo.png');
        background-size: contain;
        background-repeat: no-repeat;
    }

    .header-options[b-ho6jh8slcm] {
        display: none;
    }

    .header-options-responsive[b-ho6jh8slcm] {
        display: block;
        font-size: 32px;
        position: absolute;
        right: 6%;
    }

    .options[b-ho6jh8slcm] {
        cursor: pointer;
        margin-right: 40px;
        font-size: 28px;
        font-weight: bold;
        transition: 1s ease;
    }

        .options:hover[b-ho6jh8slcm] {
            color: #a2dfff;
        }

        .options:last-child[b-ho6jh8slcm] {
            margin-right: 0px;
        }

    .menu-options[b-ho6jh8slcm] {
        width: 100%;
        height: 100%;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
    }

    .option[b-ho6jh8slcm] {
        font-weight: bold;
        font-size: 20px;
        height: 80px;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        display: flex;
        align-items: center;
        cursor: pointer;
        padding-left: 30px;
    }

        .option:last-child[b-ho6jh8slcm] {
            border-bottom: none;
        }

    .option i[b-ho6jh8slcm]{
        margin-right: 15px;
    }
}

/* _content/Jobby/Shared/TransporteOrder.razor.rz.scp.css */
/* ===============================
   BASE
================================ */
.servicebox[b-ntlgh80kyf] {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .servicebox h2[b-ntlgh80kyf] {
        font-size: 28px;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 12px;
    }

/* ===============================
   CARD PRINCIPAL
================================ */
.service-content[b-ntlgh80kyf] {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===============================
   INPUTS
================================ */
.inputs[b-ntlgh80kyf] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 0 14px;
    font-size: 15px;
    background: #F9FAFB;
    transition: border .2s, box-shadow .2s;
}

    .inputs:focus[b-ntlgh80kyf] {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37,99,235,.15);
        background: white;
    }

/* ===============================
   CHECKBOX MODERNO
================================ */
.checkbox-container[b-ntlgh80kyf] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-checkbox[b-ntlgh80kyf] {
    display: none;
}

.checkbox-label[b-ntlgh80kyf] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #CBD5E1;
    cursor: pointer;
    transition: all .2s;
}

.custom-checkbox:checked + .checkbox-label[b-ntlgh80kyf] {
    background: #2563EB;
    border-color: #2563EB;
}

.label-text[b-ntlgh80kyf] {
    font-size: 14px;
    color: #334155;
    cursor: pointer;
}

/* ===============================
   BOTÓN PRINCIPAL
================================ */
.btnenviar[b-ntlgh80kyf] {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg,#2563EB,#0EA5E9);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

    .btnenviar:hover[b-ntlgh80kyf] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(37,99,235,.35);
    }

    .btnenviar:active[b-ntlgh80kyf] {
        transform: translateY(0);
    }

/* ===============================
   MODAL / OVERLAY
================================ */
.message-background[b-ntlgh80kyf] {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ===============================
   MAPA
================================ */
.map[b-ntlgh80kyf] {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
}

/* ===============================
   LISTADO EMPRESAS
================================ */
.enterprises-content[b-ntlgh80kyf] {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.enterprises-content-header[b-ntlgh80kyf] {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.enterprises-content-body[b-ntlgh80kyf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
    overflow-y: auto;
}

/* ===============================
   CONFIRMACIÓN DE ORDEN
================================ */
.order-confirmation-card[b-ntlgh80kyf] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15,23,42,.15);
    padding: 18px;
}

.card-header h3[b-ntlgh80kyf] {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-header .sub[b-ntlgh80kyf] {
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.card-body[b-ntlgh80kyf] {
    margin-top: 10px;
}

.row[b-ntlgh80kyf] {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

    .row:last-child[b-ntlgh80kyf] {
        border-bottom: none;
    }

    .row .label[b-ntlgh80kyf] {
        font-weight: 600;
        color: #334155;
    }

    .row .value[b-ntlgh80kyf] {
        font-weight: 600;
        color: #0F172A;
        max-width: 60%;
        text-align: right;
    }

    .row.note .value[b-ntlgh80kyf] {
        font-style: italic;
        color: #64748B;
    }

.fare-amt[b-ntlgh80kyf] {
    font-size: 18px;
    font-weight: 800;
}

/* ===============================
   ACCIONES CONFIRMAR
================================ */
.card-actions[b-ntlgh80kyf] {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn[b-ntlgh80kyf] {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-back[b-ntlgh80kyf] {
    background: #F1F5F9;
    color: #334155;
}

.btn-confirm[b-ntlgh80kyf] {
    background: linear-gradient(135deg,#0EA5E9,#22C55E);
    color: white;
}

/* ===============================
   MOBILE (IPHONE / ANDROID)
================================ */
@media (max-width: 480px) {

    .service-content[b-ntlgh80kyf] {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .servicebox h2[b-ntlgh80kyf] {
        font-size: 22px;
        text-align: center;
    }

    .map[b-ntlgh80kyf] {
        height: 220px;
    }

    .order-confirmation-card[b-ntlgh80kyf] {
        border-radius: 16px;
        padding: 14px;
    }

    .card-actions[b-ntlgh80kyf] {
        flex-direction: column-reverse;
    }

    .btn[b-ntlgh80kyf] {
        width: 100%;
    }
}
