.modal.show {
    display: flex;
    margin-top: 3rem;
    justify-content: center;
}

#error-modal .modal-content, #add-service-modal .modal-content, #msg-modal .modal-content {
    background-color: var(--ModalBackground);
    color: var(--White);
    background-clip: padding-box;
    border: none;
    box-shadow: rgb(119 119 119 / 10%) 0 2px 8px 0;
}

#error-modal .modal-title, #add-service-modal .modal-title, #msg-modal .modal-title {
    font-family: "Akzidenz bold", "Arial";
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

#error-modal .modal-header, #add-service-modal .modal-header, #msg-modal .modal-header {
    border-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#error-modal .modal-footer, #add-service-modal .modal-footer, #msg-modal .modal-footer {
    border-top: 0;
    justify-content: center;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#error-modal button[type="button"][data-bs-dismiss="modal"], #add-service-modal button[type="button"], #msg-modal button[type="button"][data-bs-dismiss="modal"] {
    border: 0;
    font-size: 20px;
    border-radius: 0;
    padding: 0.4rem 1.75rem;

    font-family: "Akzidenz bold", "Arial";
}

#error-modal button[type="button"][data-bs-dismiss="modal"] {
    color: white;
    border-radius: 4px;
    border-color: var(--Error);
    background-color: var(--Error);
}

#msg-modal button[type="button"][data-bs-dismiss="modal"], #add-service-modal button[type="button"] {
    color: var(--Background);
    border-color: var(--Primary);
    background-color: var(--Primary);
}
