/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
  }
  
  body {
    background-color: #f9f9f9;
  }
  
  h1, h2 {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }
  
  a:hover {
    color: #ff8800;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo i {
    font-size: 2rem;
    color: #ff8800;
    margin-right: 0.5rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav li {
    margin-right: 1rem;
  }
  
  nav a {
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out;
  }
  
  nav a:hover {
    background-color: #ff8800;
    color: #fff;
  }
  
  /* Main */
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  section button {
    display: block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #ff8800;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  section button:hover {
    background-color: #ff6600;
  }
  
  section pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: auto;
  }
  
  section form {
    display: flex;
    flex-direction: column;
  }
  
  section label {
    margin-bottom: 0.5rem;
  }
  
  section input[type="text"], section input[type="number"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  section input[type="text"]:focus, section input[type="number"]:focus {
    outline: none;
    border-color: #ff8800;
  }
  
  section input[type="submit"], section button[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: #ff8800;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0
    .

    /* Navigation links */
    nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    }
    
    nav li {
    margin: 0 10px;
    }
    
    nav a {
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
    }
    
    nav a:hover {
    background-color: #fff;
    color: #000;
    }
    
    /* Sections */
    main {
    margin: 50px auto;
    max-width: 800px;
    padding: 0 20px;
    }
    
    section {
    margin-bottom: 50px;
    }
    
    section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    }
    
    section p {
    font-size: 16px;
    margin-bottom: 10px;
    }
    
    /* Form */
    form {
    display: flex;
    flex-direction: column;
    }
    
    form label {
    font-size: 16px;
    margin-bottom: 5px;
    }
    
    form input[type="text"],
    form input[type="number"] {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    background-color: #f2f2f2;
    }
    
    form input[type="text"]:focus,
    form input[type="number"]:focus {
    outline: none;
    background-color: #fff;
    }
    
    form button[type="submit"] {
    padding: 10px 20px;
    background-color: #8bc34a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    
    form button[type="submit"]:hover {
    background-color: #689f38;
    }
    
    /* Output */
    pre {
    font-size: 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
    }
    
    /* Delete confirmation */
    #delete-form {
    display: flex;
    flex-direction: column;
    }
    
    #delete-form div {
    margin-bottom: 20px;
    }
    
    #delete-form label {
    font-size: 16px;
    margin-bottom: 5px;
    }
    
    #delete-form input[type="number"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #f2f2f2;
    }
    
    #delete-form input[type="number"]:focus {
    outline: none;
    background-color: #fff;
    }
    
    #delete-form button[type="submit"] {
    padding: 10px 20px;
    background-color: #f44336;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    
    #delete-form button[type="submit"]:hover {
    background-color: #d32f2f;
    }
    }
    
    @media only screen and (max-width: 600px) {
        /* Navigation */
        .logo h1 {
        font-size: 18px;
        }
        
        nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        }
        
        nav li {
        margin: 10px 0;
        }
        }