/* Container styling */
.macro-calculator {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Heading styling */
.macro-calculator h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Label styling */
.macro-calculator label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

/* Input and select styling */
.macro-calculator input,
.macro-calculator select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

/* Button styling */
.macro-calculator button {
    width: 100%;
    padding: 10px;
    background-color: rgb(195, 142, 86) !important; /* Button color */
    color: #fff !important; /* Ensure the text is white */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Button hover effect */
.macro-calculator button:hover {
    background-color: rgb(165, 122, 66) !important; /* Slightly darker on hover */
}

/* Results styling */
#results {
    margin-top: 20px;
    text-align: center;
}

/* Paragraph styling inside the results */
#results p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333 !important; /* Darker color for the results text */
}

/* Results heading */
#results h3 {
    font-size: 20px;
    color: #1aa442;
    margin-bottom: 15px;
}
