/* Reset default margins and paddings */
body, h1, h2, p, table {
    margin: 0;
    padding: 0;
}

/* Set a background color for the body */
body {
    background-color: #282828;
    font-family: Arial, sans-serif;
}

/* Style the main heading */
h1 {
    background-color: #33333300;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

/* Style the form container */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 10px solid #ccccccc3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    max-width: 600px; /* Added for responsiveness */
    margin: 0 auto; /* Center the form horizontally */
}

/* Style table rows */
table tr {
    margin: 10px;
}

/* Style labels */
label {
    margin-left: 35px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: medium;
}

/* Style checkboxes */
input[type="checkbox"] {
    margin-right: 5px;
}

/* Style dropdown select elements */
select {
    width: 100%; 
    padding: 5px;
    border-width: 2px;
    border-radius: 7px;
    margin-left: 20px;
}

/* Style quantity input fields */
input[type="number"] {
    width: 30%; 
    padding: 5px;
    margin-bottom: 1px;
    margin-left: 20px;
    border-radius: 15px;
}

/* Style the "Hesapla" button */
input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    margin-top: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bolder;
}

input[type="submit"]:hover {
    background-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    margin-top: 8px;
}

/* Style result headings and paragraphs */
h2, p {
    margin-top: 20px;
    margin: 5px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}
body {
    font-family: 'Roboto', sans-serif;
  }
  p{
    text-align: justify;
    margin-inline: 20px;
    text-indent: -20px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
  }
  i {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    margin-top: 2%;
  }
  nav {
    width: 80px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    transition: width 0.5s ease;
    height: 100%;
    display: flex;
    align-items: right;
    flex-direction: column;
    background-color: #232b32;
    color: #232b32;
  }
  span {
    text-align: justify;
    margin-inline: 20px;
    margin-top: 3%;
  }
  nav span {
    transform: scale(0);
    position: relative;
    color: #232b32;
  }
  nav a {
    text-align: center;
    transform: scale(1);
    color:#fff
  }
  nav:hover span {
    transform: scale(1);
    color:#fff;
  }
  nav:hover a {
    transform: scale(0);
    margin-top: -50px;
  }
  nav:hover {
    width: 280px;
    color: #fff;
  }