.confirm-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 11;
    cursor: pointer;
}

.confirm-modal__container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 252px;
    background-color: var(--people-color-white);
    z-index: 1000;
    box-shadow: 0px 3px 6px var(--people-shadow-hint);
    line-height: 1.5 !important;
    font-size: var(--people-font-size-ml) !important;
    flex-direction: column;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    border-radius: var(--people-border-radius);
}

.confirm-modal__container.show {
    opacity: 1;
}

.confirm-modal__header {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 25%;
}

.confirm-modal__title {
    font-weight: bold;
    font-size: var(--people-font-size-lg);
    color: var(--people-text-color)
}

.confirm-modal__text {
    font-size: var(--people-font-size-ml);
    color: var(--people-text-color);
    text-align: left;
}

.confirm-modal__close-btn {
    background: none;
    border: none;
    color: var(--people-text-color);
    font-size: var(--people-font-size-ml);
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 15px;
    height: 15px;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 16px;
    transform: translateY(-50%);
}

.confirm-modal__body {
    flex: 1;
    padding: 10px 50px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    height: 50%;
}

.confirm-modal__footer {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    height: 25%;
}

.confirm-modal__confirm-btn {
    background-color: var(--people-color-orange);
    color: var(--people-color-white);
    border: none;
}

.confirm-modal__confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-modal__cancel-btn {
    background-color: var(--people-color-white);
    border: solid 1px var(--people-color-orange);
    color: var(--people-color-orange);
}

.confirm-modal__cancel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}