/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    position: relative;
}

.modal-content input, 
.modal-content select {
    width: 100%;
    padding: 6px;
    margin: 6px 0 12px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.modal-content button {
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.modal-content button:hover {
    background-color: #005f8d;
}

.modal-content .close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

#btn-agregar {
    background-color: black !important;
}

.footer {
    padding-top: 0px !important;
    margin-top: 0px !important;
}



