body {
    margin: 0;
    font-family: "Courier New", Courier, monospace;
    background-color: #121212;
    color: #e0e0e0;
  }
  
  .terminal-navbar {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px;
    overflow: visible;
  }
  
  .terminal-buttons {
    display: flex;
    gap: 8px;
  }
  
  .term-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .red { background-color: #ff5f56; }
  .yellow { background-color: #ffbd2e; }
  .green { background-color: #27c93f; }
  
  .term-title {
    font-weight: 500;
    font-size: 14px;
    color: #cfcfcf;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    display: flex;
    align-items: center;
  }
  
  .cursor {
    animation: blink 1s step-start infinite;
    color: #cfcfcf;
    margin-left: 2px;
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }
  
  .nav-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  }
  
  .nav-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  
  .nav-center-btn {
    color: #00ff87;
    font-size: 12px;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
  }
  
  .nav-center-btn:hover {
    text-decoration: underline;
  }
  
  #navbarNav {
    background-color: #1e1e1e;
    padding-bottom: 0.5rem;
  }
  
  .modal-content {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #444;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  }
  
  .form-control {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #555;
  }
  
  .form-control:focus {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #00ff87;
    box-shadow: none;
  }
  
  .btn-terminal {
    background-color: #00ff87;
    color: #000;
    border: none;
  }
  
  .btn-terminal:hover {
    background-color: #00e673;
  }
  
  .container {
    margin-top: 3rem;
  }
  
  .navbar-toggler {
    border: none;
    filter: invert(1);
  }
  
  form.terminal-form {
    margin: 0;
    padding: 0;
    width: fit-content;
    display: inline-block;
  }
  
  label.form-label {
    margin-bottom: 0.2rem;
    color: #00ff87;
    font-family: Menlo, Monaco, Consolas, monospace;
  }
  
  .terminal-input-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
  }
  
  .terminal-input-row .form-label {
    margin: 0;
    width: 200px;
    white-space: nowrap;
    font-weight: bold;
    font-family: Menlo, Monaco, Consolas, monospace;
    color: #00ff87;
    text-align: right;
  }
  
  .terminal-line {
    font-family: Menlo, Monaco, Consolas, monospace;
    color: #00ff87;
    background-color: #121212;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 6px 10px;
    min-height: 32px;
    line-height: 20px;
    white-space: pre-wrap;
    outline: none;
    display: inline-block;
    width: 350px;
    max-width: 350px;
    box-sizing: border-box;
    overflow-x: hidden;
    caret-color: #00ff87;
  }
  
  /* Para mostrar puntos en campo contraseña */
  #password-editable::before {
    content: attr(data-mask);
    color: #00ff87;
    white-space: pre;
  }
  
  #password-editable {
    color: transparent;
    caret-color: #00ff87;
  }
  
  /* Cursor solo cuando hay focus */
  #terminal-editable::after,
  #password-editable::after {
    content: "_";
    color: #00ff87;
    animation: blink 1s step-start infinite;
    display: none;
  }
  
  #terminal-editable:focus::after,
  #password-editable:focus::after {
    display: inline;
  }
  
  input[type="hidden"] {
    display: none;
  }