/* CSS styles for the green button */
.btn-green {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #28a745;
    border: 2px solid #28a745;
    text-decoration: none;
    border-radius: 5px;
}

.btn-green:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
