/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Apply Google font Poppins */
    background: linear-gradient(to right, #ff6a00, #ee0979); /* Gradient background */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Button Styling */
button {
    width: 48%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease-in-out;
}

#calculateProfitBtn {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
}

#clearBtn {
    background-color: #f44336;
    color: white;
    font-weight: 600;
}

button:hover {
    transform: translateY(-5px); /* Lift the button on hover */
}

h2, h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}
