/* minimalist-terminal.css */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .crt {
    position: relative;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    font-size: 10rem;
    color: #000;
    font-family: 'Courier New', monospace;
    font-weight: 700;
  }
  
  .ts-out {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .ts-in {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .fade-in {
    animation: fadeIn 0.3s ease-in;
  }
  
  /* Input Styles */
  input[type="text"] {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    padding: 12px;
    font-family: 'Courier New', monospace;
    transition: all 0.2s ease;
    position: fixed;
    bottom: 10px;
    width: 396px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 9px;
    
  }
  
  input[type="text"]:focus {
    background: rgba(0, 0, 0, 0.03) !important;
    outline: none;
  }
  
  button {
    background-color:rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
    position: fixed;
    right: 9px;
    bottom: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }


  
  button:hover {
    background: rgba(0, 0, 0, 0.05) !important;
  }
  
  /* Text Elements */
  p, h1, h2, h3 {
    color: #ffffffaa;
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
   
  }
  
  /* Responsive Design */
  @media (max-width: 512px) {
    .logo {
      font-size: 4rem;
    }
  }
  
  @media (min-width: 512px) and (max-width: 1024px) {
    .logo {
      font-size: 6rem;
    }
  }
  
  @media (min-width: 1024px) {
    .logo {
      font-size: 8rem;
    }
  }
  
  /* Layout Utilities */
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .pt {
    padding-top: 1rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .whitespace-pre-line {
    white-space: pre-line;
  }

  


  /* For WebKit browsers */
::-webkit-scrollbar {
  width: 10px; /* Adjust the width here */
  height: 10px; /* Adjust the height if needed */
}

::-webkit-scrollbar-track {
  background: transparent; /* Transparent background */
}

::-webkit-scrollbar-thumb {
  background-color: black; /* Black handle */
  border-radius: 10px; /* Optional: rounds the handle */
  border: 2px solid transparent; /* Adds spacing around the thumb */
}

/* For Firefox */
html {
  scrollbar-width: thin; /* Options: auto, thin */
  scrollbar-color: black transparent; /* thumb color then track color */
}


