﻿.btnNew {
    background-color:#00bc4d;
}
    .btnNew:hover {
        background-color: #02a746!important;
    }

.options::after {
    content: none;
}

.dataTables_filter {
    display: none;
}

.btnEditGuiaRow:hover {
    background-color: #ef394b !important;
}

.btn-outline-warning {
    border-color: darkorange !important;
    color: darkorange !important;
}

.btn-outline-warning:hover {
    border-color: none !important;
    color: white !important;
    background-color: darkorange !important;
}


.commentIcon:hover {
    background-color: darkorange !important;
    color: white !important;
}

.commentOpenBtn:hover {
    background-color: darkorange !important;
    color: white !important;
}


.form-check-input:checked {
    background-color: #fd920d !important;
    border-color: #fd7b0d !important;
}

.popover-content {
    display: none; /* Oculta el contenido inicialmente */
    position: absolute;
    z-index: 1000; /* Asegúrate de que esté sobre otros elementos */
    max-width:850px !important;
}

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white; /* Color del triángulo */
    top: -8px; /* Ajusta según sea necesario */
    left: 20px; /* Ajusta según sea necesario */
}

    .triangle::before {
        content: '';
        position: absolute;
        top: -1px; /* Ajusta según sea necesario */
        left: -9px; /* Ajusta según sea necesario */
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-bottom: 9px solid #ccc; /* Borde gris */
        z-index: -1; /* Coloca el borde detrás del triángulo blanco */
    }

.format-options {
    font-family: Arial, sans-serif;
    margin: 20px;
}

    .format-options h3 {
        margin-bottom: 10px;
    }

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

    .radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.radio-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

