/*Login*/
.card-login{
    width:400px;
    background-color: black;
    border-radius:30px;
    padding:60px 50px !important;
    height:auto;
}
    
    .card-login .btn-primary, h3{
        color: white !important;
    }

    .card-login .login-input{
        height:45px;
    }

    .card-login .login-btn {
        height: 45px;
        clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    }

    .card-login .login-input:focus {
        background-color: #ffffff;
        color: #141414;
        outline: none;
    }

/*home/index*/
.dashboard-box {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.icon-container {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.box-yellow {
    background-color: #ffe8b2;
    color: #ffc107;
}

.box-blue {
    background-color: #e6f0ff;
    color: #5a8dee;
}

.box-green {
    background-color: #d2f6e3;
    color: #28a745;
}

.percentage {
    font-size: 14px;
}

    .percentage .text-green {
        color: #28a745;
    }

    .percentage .text-red {
        color: #a73128;
    }

    .percentage .text-gray {
        color: #6c757d;
    }

/*home/opportunity*/

.bg-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    padding-top: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inherit;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.add-button {
    background-color: #5a8dee;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

    .add-button:hover {
        background-color: #4a78c7;
        color: white;
    }

/* Cores dos Status */
.badge-status {
    border-radius: 8px;
    font-size: 12px;
    padding: 6px 10px;
    font-weight: 500;
}

.status-success {
    background-color: #d1f7d6;
    color: #2ca84c;
}

.status-info {
    background-color: #e0eaff;
    color: #5a8dee;
}

.status-danger {
    background-color: #fdd7d9;
    color: #d9534f;
}

.status-neutral {
    background-color: #e8e8e8;
    color: #6c757d;
}

/* Ícones de Ações */
.actions i {
    cursor: pointer;
    margin: 0 6px;
    font-size: 1.1rem;
}

.align-button {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-size: 1rem;
    border-radius: 0.375rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .profile-header img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }

    .profile-header h1 {
        font-size: 1.5rem;
        margin: 0;
    }

.badge-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .badge-status span {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .badge-status .status-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.tab-content {
    margin-top: 1rem;
}

.gray-placeholder {
    background-color: #f8f9fa;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
    border-radius: 0.25rem;
}

/*Status de Oportunidade*/

.statusRoundBox{
    border: #ccc 1px solid;
    color: #7c8798;
    padding: 8px 10px;
}

.statusColourGrid {
    padding:2px;
    width: 100px;
    height: 20px;
    display: block;
    border: 1px solid #CCC;
}
/* Estilização da Mensagem */
.message-container {
    position: relative;
    max-width: 100%;
    background-color: #e8e5e5;
    color: #7c8798;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.message-container:hover {
    background-color: #e6e5e5;
}

/* Header da Mensagem */
    .message-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Estilo do Texto da Mensagem */
.message-text {
    margin-top: 5px;
}

/* Estilização da Data e Hora */
.message-time {
    font-size: 10px;
    color: #b0b0b0;
    font-weight: bold;
    display: block;
}

/* Ícone de Exclusão */
.delete-icon {
    position: absolute;
    right: 10px;
    color: #b0b0b0;
    cursor: pointer;
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s ease-in-out;
}

    .delete-icon:hover {
        color: #ff4d4d;
    }

/* Exibir o botão ao passar o mouse */
.message-container:hover .delete-icon {
    opacity: 1;
}

#noteText {
    background-color: #F6F6F6;
}

    .noteText-wrapper {
        margin: 0px 15px 15px 15px;
    }

        .noteText-wrapper a {
            margin-top: -40px;
            margin-right: 20px;
            color: #ABC0E0 !important;
        }


/* Wizard */
.wizard-container {
    max-width: 800px;
    margin: 30px auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

    .wizard-steps::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 10%;
        width: 80%;
        height: 3px;
        background-color: #ddd;
        z-index: 0;
    }

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

    .wizard-step .step-number {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #bbb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        transition: background-color 0.3s ease;
    }

    .wizard-step.active .step-number {
        border-radius: 60px;
        color: #141414 !important;
        background-color: #00FB8C;
        box-shadow: 0 7px 12px 0 rgba(95, 118, 232, .21);
        opacity: 1;
    }

    .wizard-step.active .step-title {
        color: #1c2d41;
    }

    .wizard-step .step-title {
        margin-top: 5px;
        font-size: 14px;
        color: #aaa;
    }

.btn-circle {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    text-align: center;
}

.input-group .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Tab Steps*/
.step-card {
    border-radius: 10px;
    background-color: #fff;
}

.step-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.step-item {
    background-color: #E9F0FE;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .step-item:hover {
        background-color: #D3E3FD;
    }

/* Step Modal */
.modal-fullscreen-step {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

    .modal-fullscreen-step .modal-content {
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .modal-fullscreen-step .modal-body {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 20px;
    }

#editorjs {
    height: 100%;
    min-height: 400px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.codex-editor {
    max-width: 100% !important;
    margin: 0 !important;
}

.codex-editor__redactor {
    max-width: none !important;
}

.ce-block__content {
    padding: 0 60px 0 40px;
    max-width: none !important;
}

.ce-toolbar__content {
    max-width: none !important;
}

.color-picker-popup, .color-picker-dropdown {
    position: absolute !important;
    z-index: 1200 !important;
}

.ce-paragraph span {
    background-color: unset !important;
}

.ce-popover--inline .ce-popover__container{
    height: auto !important;
}

/*Contato*/
.tag-column {
    max-width: 300px;
    word-wrap: break-word;
    white-space: normal;
}

    .tag-column .tagRoundBox,
    .tag-column .tagRoundBoxAdd {
        white-space: nowrap;
    }

.tagRoundBox {
    background-color: #ccf0ea;
   /* border: 1px solid #00D88C;
    color: #00D88C;*/
    padding: 8px 10px;
    border: #ccc 1px solid;
    color: #7c8798;
}
.tagRoundBoxAdd {
    background-color: #ccf0ea;
    border: #ccc 1px solid;
    color: #7c8798;
    padding: 8px 10px;
    cursor: pointer;
}