﻿.donation-box {
    border: 2px dotted lightgray; /* Adds 1 pixel thick solid border */
    padding: 25px;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.buttonAF {
    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%;
}


.donation-box {
    border: 2px dotted lightgray; /* Adds 1 pixel thick solid border */
    padding: 25px;
    background-color: #f9f9f9;
    margin-top: 10px;
}
    .donation-box.styled-table {
        width: 100%;
        max-width: 700px;
        margin: 30px auto;
        border-collapse: collapse;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        background-color: #f9f9f9;
        border-radius: 6px;
        overflow: hidden;
    }
        .donation-box.styled-table th,
        .donation-box.styled-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .donation-box.styled-table th {
            background-color: #f2f2f2;
            font-weight: 600;
            color: #333;
        }

        .donation-box.styled-table caption {
            caption-side: top;
            text-align: left;
            padding: 10px;
            font-size: 1.2em;
            font-weight: bold;
            color: #444;
        }

.button2 {
    display: inline-block;
    padding: 12px 24px; /* Larger touch area */
    font-size: 18px;
    color: white;
    background-color: green;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 .button:hover {
        background-color: #006400; /* Darker green on hover */
        transform: scale(1.05); /* Slight grow effect */
 }

.tableAF {
    background-color: white;
    border: 1px solid #ddd;
    color: black;
    width: 60%;
    max-width: 500px;
    border-collapse: separate;
    border-spacing: 5px;
}

.panel-darkred {
    border-color: #660000;
    max-width: 400px;
    margin: 20px auto;
}

.panel-darkred:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);    

}
.panel-darkred > .panel-heading {
    background-color: #660000;
    color: white;
    border-color: #660000;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    padding: 10px 15px;
}

.shadow-soft {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* gentle depth */
}