﻿.donation-box {
    border: 2px dotted lightgray; /* Adds 1 pixel thick solid border */
    padding: 25px;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.dotted-underline {
    border-bottom: 1px dotted #000; /* Adds 1-pixel thick dotted underline w. a black color to the BOTTOM of ELEMENT */
    display: inline-block; /* makes element behave like an inline element but allows you to set width & height  */
    width: 100%;
}
