
body{
    background-color: #f3f4f6;
  
  }

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

select, input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}
input[type="submit"]:active {
    transform: scale(0.95);
    background-color: #3e8e41;
}
#result {
    margin-top: 20px;
}

@media only screen and (min-width: 600px) {
    form {
        width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 768px) {
    form {
        width: 60%;
    }
}

#result table {
    margin: 0 auto;
}
/* Style the table */
#result table {
    border-collapse: collapse;
    width: 40%;
    min-width: 320px;
}
#result th, #result td {
    border: 2px solid #dddddd;
    text-align: left;
    padding: 8px;
}
#result th {
    background-color: #f2f2f2;
}
a{
    text-decoration:none;
}
i{
margin:7px;
} 