
#copd-change-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
}
.copd-modal-content {
    background: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
}
.copd-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copd-modal-body {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 15px;
}
.copd-modal-image {
    flex: 0 0 100px;
}
.copd-modal-details {
    flex: 1;
}
.copd-modal-footer {
    margin-top: 20px;
}
.copd-modal-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}
.copd-submit-btn {
    background-color: #DD3333 !important;
    color: white !important;
}
.copd-cancel-btn {
    background-color: #ccc;
}
.copd-modal-close {
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 22px;
    cursor: pointer;
}
