﻿.btn-confirm, button {
    width: 100%;
    background-color: forestgreen;
    border-radius: 8px;
    margin-right: 20px;
    color: white;
}

    .btn-confirm:hover {
        color: white;
        text-decoration: none;
    }


.btn-cancel {
    color: #16a34a;
    width: 100%;
    border-color: black;
    border-radius: 8px;
    margin-left: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: 100%;
}

.my-modal .modal-header {
    justify-content: center;
    border-bottom: none;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.my-modal .modal-footer {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    flex-wrap: inherit;
}

.centertext {
    text-align: center;
}
