/* This CSS file will be loaded at last. Any CSS customization should be placed here */

.btn {
    background-color: orange;  /* Sets the button color to orange */
    color: white;              /* Text color inside the button */
    padding: 10px 20px;        /* Adds padding inside the button for better text display */
    border: none;              /* Removes border */
    border-radius: 5px;        /* Adds rounded corners to the button */
    font-size: 16px;           /* Sets the font size */
    cursor: pointer;           /* Changes cursor to pointer when hovering over the button */
    display: inline-block;     /* Allows the button width to fit the text */
}
