/* /* ========================= FORM LOGIN INCIDENTES ID lp-login-form ========================= */
#lp-login-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 60px auto;
    font-family: 'Montserrat', sans-serif;
}

#lp-login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

#lp-login-form input[type="email"],
#lp-login-form input[type="password"],
#lp-login-form input[name="lp_senha"][type="text"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

#lp-login-form input:focus {
    border-color: #9ca3af;
    outline: none;
    background-color: #fff;
}

/* Envolve o campo de senha e o ícone */
.lp-senha-wrapper {
    position: relative;
	margin-bottom: 20px;
}

.lp-senha-wrapper input {
    width: 100%;
    padding: 14px 44px 14px 16px; /* espaço à direita para o botão */
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    color: #111827;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Ícone do olho posicionado corretamente */
.lp-senha-wrapper span {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    user-select: none;
    z-index: 2;
    background-color: transparent;
}

.lp-senha-wrapper span:hover {
    color: #374151;
}

.lp-senha-wrapper input:focus {
    border-color: #9ca3af;
    background-color: #fff;
    outline: none;
}

/* Botão do olho dentro do campo */
.lp-toggle-senha {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

.lp-toggle-senha:hover {
    color: #374151;
}

/* Botão */
#lp-login-form input[type="submit"] {
    width: 100%;
    background-color: #339999;
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#lp-login-form input[type="submit"]:hover {
    background-color: #025D5D;
    transform: translateY(-1px);
}


/* ========================= FORM LOGIN INCIDENTES ========================= */








/* ===== Tabela no Desktop ===== */
.tabela-dados {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.tabela-dados th, 
.tabela-dados td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.tabela-dados th {
    background-color: #f9fafb;
    color: #1f2937;
    font-weight: 600;
    width: 30%;
}

.tabela-dados tr:last-child td {
    border-bottom: none;
}

/* ===== Mobile cards ===== */
.mobile-card {
    display: block;
}

@media (max-width: 767px) {
    .tabela-dados {
        display: table;
    }
    .mobile-card {
        display: table;
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fafafa;
    }
    .campo {
        margin-bottom: 10px;
    }
    .campo strong {
        display: table;
        font-weight: 600;
        margin-bottom: 5px;
    }
}
.tabela-planilha {
    overflow-x: auto;
}

.tabela-planilha table {
    min-width: 600px;
}


/* ===== Botões Aprovar/Recusar ===== */
.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-buttons input[type="radio"] {
    display: none;
}

.toggle-buttons label {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    border: 2px solid transparent;
    background: #f1f5f9;
    color: #1f2937;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.toggle-buttons .btn-aprovar {
    border: 2px solid #38a169;
    background: #e6fffa;
    color: #276749;
}

.toggle-buttons .btn-recusar {
    border: 2px solid #f56565;
    background: #fff5f5;
    color: #c53030;
}

input[type="radio"]#aprovar:checked + label.btn-aprovar {
    background: #38a169;
    color: white;
    border-color: #38a169;
}

input[type="radio"]#recusar:checked + label.btn-recusar {
    background: #f56565;
    color: white;
    border-color: #f56565;
}

/* ===== Botão Sair ===== */
.lp-sair {
    display: inline-block;
    background: #f1f5f9;
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: background 0.2s ease;
}

.lp-sair:hover {
    background: #e2e8f0;
}

/* ===== Loading Spinner ===== */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.lp-timeline {
    border-left: 4px solid #d1d5db;
    margin: 30px 0;
    padding-left: 20px;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
}

.timeline-point {
    width: 14px;
    height: 14px;
    background-color: #3b82f6; /* azul */
    border-radius: 50%;
    position: absolute;
    left: -11px;
    top: 10px;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #3b82f6;
}

.timeline-content {
    background-color: #f9fafb;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.timeline-title {
    
    margin: 0 0 4px;
    color: #111827;
}

.timeline-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
	
}


// nova tabela para exibir os dados

.lp-boxed-table {
    margin: 30px 0;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.lp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

.lp-table th,
.lp-table td {
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
    /*border-bottom: 1px solid #e5e7eb;*/
    color: #1f2937;
}

.lp-table th {
    font-weight: 600;
    width: 30%;
    color: #111827;
    background-color: transparent;
}

.lp-table tr:last-child td {
    border-bottom: none;
}
