/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
    height: 9px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 6px;
  }
  
  /* Hide scrollbars for specific elements */
  element::-webkit-scrollbar {
    width: 0;
  }
  
  /* Universal Reset & Base Styling */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    object-fit: contain;
    font-family: 'Open Sans', sans-serif;
  }
  
  /* Modal Animation & Visibility */
  .modal-all-content {
    width: 100%;
    max-height: 500px;
    transform: translateY(-60px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .modal-all-content.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  /* No Scrollbar (Clean Scroll) */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  /* Data Search Layout */
  .data-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 1rem;
  }
  
  .data-search input {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .data-search button {
    width: 50px;
    padding: 10px 20px;
    border: none;
    background-color: #444;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .data-search button:hover {
    background-color: #333;
  }
  