/* src/styles/sidebar.css */
.sidebar-container {
    position: fixed;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease;
  }
  
  /* Points display positioned at top */
  .sidebar-container.points {
    top: 60px;
    margin-top: 8px;
    z-index: 1001;
  }

  .sidebar-container.shop {
    margin-top: 25px;
    z-index: 1002;
  }

  
  .sidebar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-height: calc(100vh - var(--top-position) - 20px);
    overflow-y: auto;
    transform: translateX(100%);
    border-radius: 8px 0 0 8px;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  /* Custom scrollbar styling */
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }
  
  .sidebar-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    cursor: pointer;
    z-index: 1;
    border-radius: 4px 0 0 4px;
  }
  
  .sidebar-content {
    padding: 16px;
    min-width: 240px;
    max-width: 320px;
  }
  
  .minimized-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 14px;
    padding: 8px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    right: 8px;
  }
  
  /* Points specific styles */
  .points-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .points-row:last-child {
    border-bottom: none;
  }
  
  .points-info {
    font-size: 14px;
    margin-right: 12px;
  }
  
  .exchange-button {
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  
  .exchange-button:hover:not(:disabled) {
    background: #2563eb;
  }
  
  .exchange-button-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
  }
  
  .exchange-button:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
  }
  
  .coins-row {
    padding: 8px 0;
    font-weight: 500;
    color: #f59e0b;
  }