:root {
    --space: 25px;
  }
  
  .notify-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
  }
  
  .notify-box {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 250px;
    max-width: 400px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    pointer-events: auto;
    animation: fadeIn 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .notify-box.success { background-color: green; }
  .notify-box.error   { background-color: red; }
  .notify-box.warning { background-color: orange; color: black; }
  .notify-box.info    { background-color: blue; }
  
  .notify-close {
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .notify-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    animation: progressBar linear forwards;
  }
  
  /* Positioning */
  .notify-top-left     { top: var(--space); left: var(--space); align-items: flex-start; }
  .notify-top-center   { top: var(--space); left: 50%; transform: translateX(-50%); align-items: center; }
  .notify-top-right    { top: var(--space); right: var(--space); align-items: flex-end; }
  
  .notify-bottom-left  { bottom: var(--space); left: var(--space); align-items: flex-start; }
  .notify-bottom-center{ bottom: var(--space); left: 50%; transform: translateX(-50%); align-items: center; }
  .notify-bottom-right { bottom: var(--space); right: var(--space); align-items: flex-end; }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.9); }
  }
  
  @keyframes progressBar {
    from { width: 100%; }
    to   { width: 0%; }
  }
  