.error-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.error-popup {
    width: 350px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.error-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-header-icon {
    width: 32px;
    height: 32px;
}

.error-header-text {
    font-size: 18px;
    font-weight: 600;
}

.error-message {
    font-size: 14px;
    color: #333;
}

.error-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.error-button {
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
}

.error-button:hover {
    background: #005a9e;
}
