.yii-confirm-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}

.yii-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.yii-confirm-dialog {
  background-color: #fff;
  max-width: 400px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 1060;
}

.yii-confirm-header {
  background-color: #f2f2f2;
  padding: 10px;
  position: relative;
}

.yii-confirm-title {
  margin: 0;
}

.yii-confirm-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.yii-confirm-body {
  padding: 20px;
}

.yii-confirm-footer {
  padding: 10px;
  text-align: right;
  background-color: #f2f2f2;
}

.yii-confirm-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  margin-left: 5px;
  cursor: pointer;
}

.yii-confirm-cancel-btn {
  background-color: #e0e0e0;
}

.yii-confirm-confirm-btn {
  background-color: #2196f3;
  color: #fff;
}
