﻿

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.roboto {
    font-family: 'Roboto', sans-serif;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Modal específico do Financeiro - Não usa Bootstrap Modal, usa modal customizado */
.financeiro-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
}

.financeiro-modal-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.financeiro-modal-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.btn-fechar {
    display: block;
    width: 100%;
    background-color: #673ab7;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}

    .btn-fechar:hover {
        background-color: #5a2ea6;
    }

.status-box {
    background-color: #673ab7;
    color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1em;
}

.custom-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: none;
}

.text-description {
    color: black;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.tab-custom {
    background: transparent;
    border: none;
    color: gray;
    font-weight: normal;
    position: relative;
    font-size: 22px;
    padding: 10px 20px;
    cursor: pointer;
}

    .tab-custom.active {
        color: purple;
        font-weight: bold;
    }

.tab-underline-custom {
    height: 3px;
    background-color: purple;
    transition: all 0.3s ease;
    position: relative;
    top: -10px;
}

    .tab-underline-custom.emAberto {
        width: 33.33%;
        margin-left: 0;
    }

    .tab-underline-custom.Apagar {
        width: 33.33%;
        margin-left: 33.33%;
    }

    .tab-underline-custom.Historico {
        width: 33.33%;
        margin-left: 66.66%;
    }

.box-parcela {
    background-color: #f3e5f5;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

.btn-gerar-boleto, .btn-detalhes {
    background-color: #673ab7;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 10px;
}

    .btn-gerar-boleto:hover {
        background-color: #6414CC !important;
    }

    .btn-detalhes:hover {
        background-color: #6414CC !important;
    }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Modal específico do Financeiro #2 */
.financeiro-modal-container .financeiro-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
}

.financeiro-modal-content button {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #673ab7;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.codigo-barras, .detalhes-pagamento {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
    font-family: monospace;
    word-wrap: break-word;
    text-align: left;
}
