/*
 * =========================================================================================
 *  Author: Amey Thakur
 *  GitHub: https://github.com/Amey-Thakur
 *  Repository: https://github.com/Amey-Thakur/WEB-DESIGNING-LAB
 *  Description: Stylesheet for the WDL Practical Exam Interest Calculator.
 * =========================================================================================
 */

/* Main body styling for a clean, professional appearance */
body {
    background-color: #00fbff; /* Aqua background as per original design */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styling for identification section */
h1.hc {
    font-family: cursive;
    font-size: 50px;
    color: #ff0000;
    position: absolute;
    left: auto;
}

/* Container for the calculator section */
div.ex {
    width: auto;
    padding: 20px;
    border: 0px;
    margin: 0px;
}

/* Utility class for instruction text */
p.in {
    font-family: cursive;
    font-size: 15px;
}

/* Result highlight class */
.color-class {
    color: red;
    font-weight: bold;
}
