:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --glass-bg: #3B51A3;
    --border-color: rgba(255, 255, 255, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  body {
    min-height: 100vh;
    background: #91D8F6;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  .container {
    width: 100%;
    max-width: 800px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
  }
  input::placeholder{
    color:#c9c9c9;
  }
  input:focus {
    border-color: #96D7EC;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
  }
  
  button {
    background: #91d8f6;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: #3b51a3;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  .tracking-result {
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .delivery-info {
    padding: 1.5rem;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
  }
  
  .delivery-info div:last-child {
    margin-bottom: 0;
  }
  
  .info-label {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .loader {
    display: none;
    text-align: center;
    padding: 2rem;
  }
  
  .loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #6366f1;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .status-timeline {
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .status-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 25%;
    z-index: 1;
  }
  
  .status-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .status-label {
    color: #6366f1; /* Change to match the primary purple color */
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .language-switcher {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #3B51A3;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .language-switcher:hover {
    opacity: 0.9;
  }
  
  [dir="rtl"] {
    direction: rtl;
    text-align: right;
  }
  
  [dir="rtl"] .language-switcher {
    left: 2rem;
    right: auto;
  }a
  
  [dir="rtl"] .search-box {
    flex-direction: row-reverse;
  }
