.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
  }
  
  .modal-box {
    background: #333;
    padding: 24px 32px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(256,256,256,0.15);
    position: relative;
    animation: fadeIn 0.25s ease-out;
    z-index: 1200;
  }
  
  .modal-box h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
  }
  
  .modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: red;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .saved-color-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
  }
  
  .saved-color-scroll-container::-webkit-scrollbar {
    width: 6px;
  }
  
  .saved-color-scroll-container::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
  }
  