﻿/* Modal general styling */
.modalCustom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000; /* Asegura que el modal siempre esté en la parte superior */
    border-radius: 10px;
}

.modal-content-custom {
    background-color: white;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.modal-title-custom {
    color: orange;
    font-weight: bold;
    text-align: left;
    flex: 1;
}

.modal-body-custom {
    display: flex;
    flex-direction: column;
}

.input-group-custom {
    margin-bottom: 15px;
}

    .input-group-custom input[type="text"] {
        width: 100%;
    }

    .input-group-custom input[type="checkbox"] {
        margin-right: 10px;
    }

.modal-footer-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-custom {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary-custom {
    background-color: #ccc;
    color: #333;
    cursor: pointer;
}

.btn-primary-custom {
    background-color: orange;
    color: white;
    cursor: pointer;
}
