 body {
      font-family: Arial, sans-serif;
      background: linear-gradient(135deg, #f6d365, #fd9f85ac);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px;
    }

    h1 {
      margin-bottom: 20px;
      color: #333;
    }

    #busqueda {
      padding: 10px;
      width: 250px;
      border: 2px solid #ad3a30;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    table {
      border-collapse: collapse;
      width: 400px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    }

    th, td {
      padding: 12px;
      text-align: center;
      border-bottom: 1px solid #ddd;
    }

    th {
      background: #b54237;
      color: white;
    }

    tr:hover {
      background: #ffe0db;
    }