body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #0076FF;
    border-radius: 15px 15px 0 0;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
}

.content {
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="number"] {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 20%;
}

button {
    font-size: 16px;
    margin:5px !important;
    font-weight: bold;
    padding: 10px;
    border: none;
    background-color: #0076FF;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.shortcut-button{
    background-color: #8ebd3e;
}

button:hover {
    background-color: #0076FF;
}
/* Add this to your existing style.css */
button.shortcut {
    background-color: #ccc;
    margin-right: 10px;
}

button.shortcut:hover {
    background-color: #bbb;
}
.unitRateTable {
    margin-bottom: 100px; /* Adjust the value as needed */
}