/* /Layout/Components/HomeTituloGC.razor.rz.scp.css */
.containerTitulo[b-mgpbekxwdu] {
    text-align: center;
    margin-bottom: 50px;
}

h1[b-mgpbekxwdu] {
    font-size: 50px;
}

h3[b-mgpbekxwdu] {
    font-size: 20px;
}

.TitulodoGC[b-mgpbekxwdu] {
    position: relative; /* para o ícone absoluto ficar dentro deste container */
    display: flex;
    justify-content: center; /* centraliza o título */
    align-items: center;
    gap: 12px;
}

/* Ícone à direita */
.icone[b-mgpbekxwdu] {
    position: absolute;
    right: 0; /* fica no canto direito */
    top: 50%;
    transform: translateY(-50%); /* centraliza verticalmente */
    font-size: 32px;
    color: #444;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

    /* Efeito hover */
    .icone:hover[b-mgpbekxwdu] {
        color: #f5b800;
        transform: translateY(-50%) scale(1.2);
    }

/* Responsivo */
@media (max-width: 650px) {
    .TitulodoGC[b-mgpbekxwdu] {
        flex-direction: column;
        align-items: center;
    }

    .icone[b-mgpbekxwdu] {
        position: absolute;
        top: auto;
        bottom: -35px;
        right: 0;
        transform: none;
        font-size: 28px;
    }

        /* muda o ícone no mobile */
        .icone[b-mgpbekxwdu]::before {
            content: "\f304";
            font-family: "bootstrap-icons";
        }

    .bi-pencil-square[b-mgpbekxwdu]::before {
        content: "\f4ca";
    }
}
/* /Layout/Components/InputContent.razor.rz.scp.css */
/* ===== INPUT DE DATA ===== */
.input-date[b-e2x7x33byg] {
    display: flex;
    flex-direction: column;
}

    .input-date label[b-e2x7x33byg] {
        font-weight: 700;
        margin-bottom: 5px;
        color: #000;
    }

    .input-date input[type="date"][b-e2x7x33byg] {
        background-color: #fff;
        border: 2px solid #e3aa00;
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 1rem;
        color: #000;
        outline: none;
        transition: all 0.2s ease-in-out;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

        .input-date input[type="date"]:focus[b-e2x7x33byg] {
            border-color: #c89000;
            box-shadow: 0 0 6px rgba(227,170,0,0.5);
        }

/* ===== INPUT DE TEXTO NORMAL ===== */
.input-text .form_group[b-e2x7x33byg] {
    position: relative;
    padding: 15px 0px 0px;
    margin-top: 15px;
    width: 100%;
}

.input-text .form_field[b-e2x7x33byg] {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.2rem;
    background: transparent;
    padding: 9px 0;
    color: black;
    transition: border-color 0.2s;
    overflow-y: auto;
}
    .input-text .form_field[b-e2x7x33byg]::-webkit-scrollbar {
        display: none;
    }

    .input-text .form_field[b-e2x7x33byg]::placeholder {
        color: transparent;
    }

.input-text .form_label[b-e2x7x33byg] {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: black;
}

.input-text .form_field:placeholder-shown ~ .form_label[b-e2x7x33byg] {
    font-size: 1.3rem;
    top: 10px;
}

.input-text .form_field:focus[b-e2x7x33byg] {
    padding-bottom: 6px;
    border-width: 3px;
    color: black;
}

    .input-text .form_field:focus ~ .form_label[b-e2x7x33byg] {
        top: 0;
        font-size: 1rem;
        font-weight: 700;
    }





/* ===== TEXTAREA COM EXPANSÃO ===== */
.textarea-field[b-e2x7x33byg] {
    resize: none; /* impede redimensionamento manual */
    height: 2.2rem; /* cerca de 1 linha inicialmente */
    transition: all 0.3s ease-in-out;
    overflow-y: hidden;
    text-align:justify;
}

    .textarea-field:focus[b-e2x7x33byg] {
        height: 8rem; /* cerca de 4 linhas */
    }









/* ===== INPUT DE SENHA ===== */
.input-senha .toggle-password[b-e2x7x33byg] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #333;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

    .input-senha .toggle-password:hover[b-e2x7x33byg] {
        opacity: 1;
        color: #000;
    }

.input-senha .form_group[b-e2x7x33byg] {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 100%;
}

.input-senha .form_field[b-e2x7x33byg] {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.3rem;
    background: transparent;
    padding: 7px 0;
    color: black;
    transition: border-color 0.2s;
}

    .input-senha .form_field[b-e2x7x33byg]::placeholder {
        color: transparent;
    }

.input-senha .form_label[b-e2x7x33byg] {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: black;
}

.input-senha .form_field:placeholder-shown ~ .form_label[b-e2x7x33byg] {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.input-senha .form_field:focus[b-e2x7x33byg] {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    color: black;
}

    .input-senha .form_field:focus ~ .form_label[b-e2x7x33byg] {
        position: absolute;
        top: 0;
        display: block;
        transition: 0.2s;
        font-size: 1rem;
        color: black;
        font-weight: 700;
    }
/* /Layout/Components/InputOracao.razor.rz.scp.css */
/* Container que centraliza apenas a div */
.centralizador[b-ke43thb6pk] {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding:25px 0px 25px 0px;
}

.input-oracao-container[b-ke43thb6pk] {
    background-color: #ffffff;
    color: #2c3e50;
    border: 2px solid #4ac6b7; /* verde-água suave */
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .input-oracao-container:hover[b-ke43thb6pk] {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

.titulo-oracao[b-ke43thb6pk] {
    color: #0e948a;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.texto-oracao[b-ke43thb6pk] {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.campo-oracao[b-ke43thb6pk] {
    width: 100%;
    height: 90px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #bcd9d4;
    outline: none;
    resize: none;
    background-color: #f5fdfc;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .campo-oracao:focus[b-ke43thb6pk] {
        border-color: #0e948a;
        box-shadow: 0 0 6px rgba(14, 148, 138, 0.4);
        background-color: #ffffff;
    }

    .campo-oracao[b-ke43thb6pk]::placeholder {
        color: #7a8c88;
    }

.btn-enviar[b-ke43thb6pk] {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0e948a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .btn-enviar:hover[b-ke43thb6pk] {
        background-color: #0b7a70;
        transform: translateY(-2px);
    }
/* /Layout/Components/NewRegister.razor.rz.scp.css */
.registro-container[b-xlogg923rb] {
    background-color: #f6f6f4;
    border-radius: 20px;
    padding: 2rem;
    max-width: 85%;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== CABEÇALHO ===== */
.registro-header[b-xlogg923rb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.registro-titulo[b-xlogg923rb] {
    font-size: 2rem;
    font-weight: 900;
    color: black;
    margin: 0;
}

.btn-importar[b-xlogg923rb] {
    background-color: #e3aa00;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

    .btn-importar:hover[b-xlogg923rb] {
        background-color: #c99100;
    }

/* ===== CONTEÚDO ===== */
.registro-form[b-xlogg923rb] {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px dashed #ccc;
}

/* ===== DATAS ===== */
.Conteinerdates[b-xlogg923rb] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .Conteinerdates InputContent[b-xlogg923rb] {
        flex: 1;
    }

/* ===== INPUTS ===== */
.ContainerInputs[b-xlogg923rb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .ContainerInputs InputContent[b-xlogg923rb] {
        width: 100%;
    }

/* ===== RODAPÉ ===== */
.registro-footer[b-xlogg923rb] {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    gap: 2rem;
}

.btn-enviar[b-xlogg923rb] {
    background-color: #e3aa00;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-enviar:hover[b-xlogg923rb] {
        background-color: #c99100;
    }

.btn-atualizar[b-xlogg923rb] {
    background-color: #0bb33a;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-atualizar:hover[b-xlogg923rb] {
        background-color: #c99100;
    }

.btn-converter[b-xlogg923rb] {
    background-color: purple;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-converter:hover[b-xlogg923rb] {
        background-color: mediumpurple;
    }


/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .registro-header[b-xlogg923rb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .Conteinerdates[b-xlogg923rb] {
        flex-direction: column;
    }

    .registro-footer[b-xlogg923rb] {
        justify-content: center;
    }
}
/* /Layout/Components/PopupVL.razor.rz.scp.css */
.Popup .login[b-0g6r6mcd95] {
    background-color: white;
    border-radius: 16px;
    width: 540px; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
}

.Popup span[b-0g6r6mcd95] {
    color: red;
    font-size: 20px;
    margin-bottom: 18px;
    margin-top: -5px;
}

.Popup .botaodeEntrar[b-0g6r6mcd95] {
    display: flex;
    flex-direction: column;
}

.Popup .login-box[b-0g6r6mcd95] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Popup .login-header[b-0g6r6mcd95] {
    width: 100%;
    background-color: #d7f5cd;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .Popup .login-header h2[b-0g6r6mcd95] {
        font-weight: bold;
        font-size: 18px;
        color: #1a1a1a;
        margin: 0;
    }

.Popup .login-body[b-0g6r6mcd95] {
    padding: 30px 40px;
    text-align: center;
    background-color: white;
}

.Popup .login-warning[b-0g6r6mcd95] {
    color: red;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 30px;
}

.Popup .login-input-box[b-0g6r6mcd95] {
    background-color: #f7f0da;
    border-radius: 18px;
    padding: 16px;
    text-align: left;
    width: 100%;
    margin-bottom: 28px;
}

    .Popup .login-input-box label[b-0g6r6mcd95] {
        display: block;
        color: #333;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .Popup .login-input-box input[b-0g6r6mcd95] {
        width: 100%;
        border: none;
        border-bottom: 2px solid #000;
        background: transparent;
        font-size: 16px;
        outline: none;
        padding: 6px;
    }

.Popup .login-button[b-0g6r6mcd95] {
    background-color: #2e8b57;
    color: white;
    font-weight: bold;
    font-size: 17px;
    border: none;
    border-radius: 30px;
    padding: 12px 50px;
    cursor: pointer;
    transition: background 0.2s;
}

    .Popup .login-button:hover[b-0g6r6mcd95] {
        background-color: #256f47;
    }



.Popup .Versicle[b-0g6r6mcd95] {
    background-color: #e8e4d6;
    border-radius: 10px;
    width: 90vw;
    max-width: 800px;
    height: 60vh;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.Popup .header-versicle[b-0g6r6mcd95] {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    background: linear-gradient(to right, var(--gradientNavStart), var(--gradientNavEnd));
    padding: 0px 16px;
    border-radius: 10px 10px 0 0;
}

.Popup .header-versicle h2[b-0g6r6mcd95] {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.Popup .close-btn[b-0g6r6mcd95] {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.Popup .main-versicle[b-0g6r6mcd95] {
    display: flex;
    background: linear-gradient(to bottom, var(--gradientNavStart),var(--gradientNavEnd));
    position: relative;
    height: calc(100% - 45px);
    overflow: hidden;
}

.Popup .sidebar[b-0g6r6mcd95] {
    background: linear-gradient(to bottom, var(--gradientNavStart), var(--gradientNavEnd));
    padding: 16px;
    width: 250px;
    border-radius: 10px;
    text-align: left;
    margin: 0;
    height: 100%;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.3s ease;
    z-index: 10;
}

.Popup .sidebar.closed[b-0g6r6mcd95] {
    transform: translateX(-260px);
}

.Popup .versicles[b-0g6r6mcd95] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 5px 0;
    overflow-y: auto;
    max-height: calc(100% - 40px);
}

.Popup .versicles[b-0g6r6mcd95]::-webkit-scrollbar {
    display: none;
}

.Popup h3[b-0g6r6mcd95] {
    font-size: 15px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: bold;
}

.Popup .sidebar p[b-0g6r6mcd95] {
    font-size: 14px;
    font-weight: bold;
}

.Popup .content[b-0g6r6mcd95] {
    padding: 20px;
    flex: 1;
    background-color: #e8e4d6;
    margin-left: 260px;
    transition: margin-left 0.3s ease;
    overflow-y:auto;
}

.Popup .content[b-0g6r6mcd95]::-webkit-scrollbar {
    display: none;
}

.Popup .content.expanded[b-0g6r6mcd95] {
   margin-left: 0;
}

.Popup .content p[b-0g6r6mcd95] {
   font-size: 16px;
   line-height: 1.5;
   font-weight: 600;
}

@media (max-width: 720px) {
    .Popup .login[b-0g6r6mcd95] {
        width: 100%;
    }
    .Popup .login-body[b-0g6r6mcd95] {
        padding: 30px 10px;
    }
}

.Popup .menu-toggle-btn[b-0g6r6mcd95] {
    width: 45px;
    height: 25px;
    margin-top: 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    z-index: 50;
}

.Popup .menu-toggle-btn .bar[b-0g6r6mcd95] {
    width: 22px;
    height: 3px;
    background: #0f1720;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform-origin: center;
    transform: translateX(-50%);
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.Popup .menu-toggle-btn .top[b-0g6r6mcd95] {
    transform: translate(-50%, -7px);
}

.Popup .menu-toggle-btn .middle[b-0g6r6mcd95] {
    transform: translate(-50%, 0);
}

.Popup .menu-toggle-btn .bottom[b-0g6r6mcd95] {
    transform: translate(-50%, 7px);
}

.Popup .menu-open .menu-toggle-btn .top[b-0g6r6mcd95] {
    transform: translate(-50%, 0) rotate(45deg);
}

.Popup .menu-open .menu-toggle-btn .middle[b-0g6r6mcd95] {
    opacity: 0;
    transform: translate(-50%, 0) scaleX(0.2);
}

.Popup .menu-open .menu-toggle-btn .bottom[b-0g6r6mcd95] {
    transform: translate(-50%, 0) rotate(-45deg);
}
/* /Layout/Components/TextConteiner.razor.rz.scp.css */
.containerText[b-9i2h1y9a8h] {
    display: flex;
    flex-direction: column;
    color: var(--fontColor);
    border-radius: 16px;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
    position: relative; /* importante para o X ficar no canto */
}
.header[b-9i2h1y9a8h] {
    cursor: pointer;
    padding: 20px;
}
.title[b-9i2h1y9a8h] {
    font-size: 20px;
    margin: 0;
}
.content[b-9i2h1y9a8h] {
    font-size: 18px;
    margin-top: 10px;
    text-align: justify;
    padding: 20px;
}
.containerContent[b-9i2h1y9a8h] {
    display: flex;
}
/* /Layout/Components/VersicleContainer.razor.rz.scp.css */
/* /Layout/Components/VersicleLabel.razor.rz.scp.css */
.Versiclel[b-n8rqgqb6y5] {
    display: inline-block;
    background-color: #f2a900;
    padding: 2px 6px;
    border-radius: 12px;
    margin: 0 4px;
    vertical-align: baseline;
    cursor: pointer;
    font-size: 15px;
    color: black;
    font-family: Cursive;
    box-shadow: 0px 1.5px 3px 0px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.overlay[b-f30os31o21] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    filter: blur(2px);
    backdrop-filter: blur(1px);
    z-index: 12000;
    transition: opacity 0.3s;
}

.header-bar[b-f30os31o21] {
    background: linear-gradient(90deg, var(--gradientNavStart), var(--gradientNavEnd));
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    height: 8rem;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-left[b-f30os31o21] {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
}

.menu-toggle[b-f30os31o21] {
    font-size: 2rem;
    cursor: pointer;
    color: black;
}

.menu-title[b-f30os31o21] {
    font-weight: bold;
    font-size: 1.6rem;
    color: black;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

    .menu-title.show[b-f30os31o21] {
        opacity: 1;
        transform: translateX(0);
    }

.menu-title.menu-open[b-f30os31o21] {
    transform: translateX(50px);
}

.logo[b-f30os31o21] {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-left: 70px;
    transition: all 0.4s ease;
}

.header-title[b-f30os31o21] {
    font-size: 1.8rem;
    margin-top: 8px;
    font-weight: 500;
    color: black;
    transition: all 0.4s ease;
}

.layout-wrapper[b-f30os31o21] {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.app-root[b-f30os31o21] {
    height: 100vh;
    display: grid;
}

.main-container[b-f30os31o21] {
    display: flex;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar[b-f30os31o21] {
    background: linear-gradient(180deg, var(--gradientNavStart), var(--gradientNavEnd));
    width: 0;
    transition: width 0.5s ease, transform 0.3s ease;
    z-index: 900;
    height: 86.5vh;
    overflow-x: hidden;
    overflow-y: hidden; 
}

.main-container.menu-open .sidebar[b-f30os31o21] {
    width: 280px;
    box-shadow: 2px 0 6px rgba(0,0,0,0.1);
}

.content-area[b-f30os31o21] {
    flex: 1;
    background-color: #e8e4d6;
    height: 86.5vh;
    padding: 0;
    z-index: 0;
    animation: fadeSlide-b-f30os31o21 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}
    .content-area[b-f30os31o21]::-webkit-scrollbar {
        display: none;
    }


@keyframes fadeSlide-b-f30os31o21 {
    0% {
        opacity:0;
        transform: translateX(-200px);
    }
    30%{
        opacity:0.3;
    }

    60% {
        transform: translateX(-10px);
    }

    100% {
        opacity:1;
        transform: translateX(0);
    }
}


    .content-area .content[b-f30os31o21] {
        width: 100%;
        max-width: 100%;
    }

@media (max-width: 900px) {
    .main-container.menu-open .sidebar[b-f30os31o21] {
        width: 100%;
        height: calc(100vh - 7rem);
        position: absolute;
        left: 0;
        transform: translateX(0);
        z-index: 1500;
    }

    .logo[b-f30os31o21] {
        width: 70px;
        height: 70px;
        margin-left: 40px;
    }


    .header-left.menu-open[b-f30os31o21] {
        transform: translateX(30px);
    }

    .main-container.menu-open .content-area[b-f30os31o21] {
        display: none;
    }

    .menu-title[b-f30os31o21] {
        font-size: 1.4rem;
    }

    .header-title[b-f30os31o21] {
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {


    .main-container.menu-open .sidebar[b-f30os31o21] {
        transform: translateX(0);
    }

    .main-container.menu-open .content-area[b-f30os31o21] {
        display: none;
    }

    .header-bar[b-f30os31o21] {
        position: relative;
        z-index: 2000;
    }

    .logo[b-f30os31o21] {
        width: 60px;
        height: 60px;
        margin-left: 20px;
    }

    .header-left.menu-open[b-f30os31o21] {
        transform: translateX(20px);
    }

    .header-title[b-f30os31o21] {
        font-size: 1.2rem;
    }

    .menu-title[b-f30os31o21] {
        font-size: 1.2rem;
    }
}

@media (max-width: 530px) {
    .main-container.menu-open .sidebar[b-f30os31o21] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 4rem);
        margin-top:5rem;

    }

    .main-container.menu-open .content-area[b-f30os31o21] {
        display: none;
    }

    .header-bar[b-f30os31o21] {
        height: 5rem;
        padding: 0.5rem;
    }

    .menu-toggle[b-f30os31o21] {
        font-size: 1.5rem;
    }

    .logo[b-f30os31o21] {
        width: 50px;
        height: 50px;
        margin-left: 10px;
    }

    .header-left.menu-open[b-f30os31o21] {
        transform: translateX(10px);
    }

    .header-title[b-f30os31o21] {
        font-size: 1rem;
    }

    .menu-title[b-f30os31o21] {
        font-size: 0.9rem;
    }

    .content-area[b-f30os31o21] {
        padding: 0;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.arquivados-container[b-0x39toyn86] {
    width: 100%;
    padding: 10px;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.add-btn:hover[b-0x39toyn86] {
    background-color: #ffb700;
}

.documentos-lista a:hover[b-0x39toyn86] {
    font-weight: 700;
}

@media (max-width: 768px) {
    .titulo-arquivados[b-0x39toyn86] {
        font-size: 18px;
    }

    .add-btn[b-0x39toyn86] {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* Cabe�alho */
.header-arquivados[b-0x39toyn86] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    white-space: nowrap;
}

.titulo-arquivados[b-0x39toyn86] {
    font-weight: 600;
    font-size: 15px;
}

.add-btn[b-0x39toyn86] {
    background-color: #ffcc00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.30);
    line-height: 0;
    cursor: pointer;
    margin-top: -2px;
}

.divider[b-0x39toyn86] {
    border: none;
    border-top: 2px solid #007a7a;
    margin: 5px 0;
}

/* Lista com rolagem */
.documentos-lista[b-0x39toyn86] {
    text-align: center;
    font-size: 16px;
    color: #000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
}

    .documentos-lista a[b-0x39toyn86] {
        margin: 10px 0;
        text-decoration: none;
        width: 230px;
        color: #000;
        transition: color 0.2s, font-weight 0.2s;
    }

    /* Remove a barra de rolagem */
    .documentos-lista[b-0x39toyn86]::-webkit-scrollbar {
        display: none;
    }

    .documentos-lista a.ativo[b-0x39toyn86] {
        background-color: #fedf63;
        border-radius:10px;
        padding:5px;
        font-weight: 700;
    }
@media (max-width: 900px) {
    .documentos-lista a[b-0x39toyn86] {
        width:100%;
        font-size:20px;
    }
    .titulo-arquivados[b-0x39toyn86]{
        font-size:1.5rem;
    }
}
