@CHARSET "ISO-8859-1";

#dcp_site_modal {
   /*z-index:99999;*/
}

.modal.show .modal-dialog {
    top: 100px;
    z-index: auto;
}

/* ----- Modal button -----*/
.dicapModalButton.btn {
    background-color: #11ab84;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #119c79;
    border-radius: 5px;
}

.dicapModalButton.btn:hover, .dicapModalButton.btn:active {
    color: #11ab84 !important;
    background-color: white !important;
    border: 1px solid #119c79 !important;
}

/* ----- Modal form -----*/
/* Modal styles - hide and show using opacity */
.modal.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.modal.fade.show {
    opacity: 1;
}

/*
.modal-dialog {
    max-width: 500px !important;
    margin: 30px auto !important;
}
*/

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important; /* Darker background */
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
}

.modal-content {
    /*border: 2px solid #11ab84 !important;*/
}

.modal-header {
    /*border-bottom: 1px solid #aaa !important;*/
    background-color: #f9f9f9 !important;
}

.modal-footer {
    /*border-top: 1px solid #aaa !important;*/
    background-color: #f9f9f9 !important;
}

.modal-body .form-group {
    margin-bottom: 1rem;
}

/* ----- Styles for the contact form ----- */

/* Flex container for Tag and Ident fields */
.form-group.d-flex {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.flex-input, .contact-input {
    flex: 1;
}

/* Separator line between contacts */
.contact-separator {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

/* Styling for placeholder text within modal-dialog */
.modal-dialog input::placeholder,
.modal-dialog textarea::placeholder {
    color: blue;
    opacity: .4;
}