body {
    background-image: url('../images/20240426_104437.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#container {
    padding: 2% 2% 2% 2%;
}

.grid_index {
    display: grid;
    grid-template-columns: 80% 20%;
    padding: 20px;
    /* border: solid 1px red; */
}

.grid_index>div {
    margin: auto;
    border: solid 1px #eee;
    width: 100%;
    height: 100%;
}

#links {
    background-image: linear-gradient(to right, #eee, rgb(173, 209, 250));
    text-align: center;
    opacity: .9;
}

#links>.title {
    background-color: rgb(249, 176, 124);
}

.useful_links {
    font-weight: normal;
}

p.bullet {
    font-size: larger;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: solid 1px black;
    /* border: solid 4px blue; */
    /* border-style: double; */
}

thead {
    border: solid 2px black;
}

td {
    /* border: solid 1px pink; */
    padding: 2px;
}

input, select {
    padding: 10px;
    margin: 10px;
    font-size: large;
    color: blue;
    width: 50%;
    border: solid 1px #ccc;
    font-weight: bold;
}

label {
    font-size: smaller;
    font-style: italic;
    color: #666;
    padding-top: 0px;
    ;
}

.align_right {
    text-align: right;
}

textarea {
    padding: 10px;
    margin: 10px;
    font-size: large;
    color: blue;
    width: 95%;
    border: solid 1px #ccc;
}

.label {
    font-style: italic;
    color: green;
    padding-left: 5px;
}

#announcements {
    background: yellow;
    opacity: .9;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}

#announcements li {
    margin-left: 20px;
}

.message {
    background-image: linear-gradient(to left, #f9cba5, rgb(247, 231, 221));
    background-image: linear-gradient(to right, #eee, rgb(173, 209, 250));
    margin: 3px;
    padding: 10px;
}

#message_container {
    background-color: #ccc;
}

.messages_container {
    /* border: solid 1px #ccc; */
    box-shadow: 5px 5px 50px grey;
    padding-top: 20px;
}

hr.separator {
    border: solid 1px #ccc;
}

#events_list {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    margin: 50px;
    /* border: solid 1px #ccc; */
    box-shadow: 5px 5px 50px grey;
}

/* Button for CUNHA Play Schedule (visible to logged-in users) */
.cunha-play-btn {
    display: inline-block;
    padding: 10px 14px;
    background: linear-gradient(90deg, #2c5aa0, #1f4f8a);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

input[type=image] {
    max-height: 100px;
    max-width: 200px; 
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

input[type=image]:hover {
transform: scale(1.25);
}

#paypal {
    width: 60%;
    padding: 10px;
    margin: 0% 20% 0% 20%;
    display: flex;
    /* display: none; */
    flex-direction: column;
    /* background-color: linear-gradient(to right, #0b5238, #069963); */
    background: linear-gradient(to right, #066199, #028c5a);
    color: white;
    border-radius: 10px;
}

form {
    text-align: center;
}

#paypal-button {
    display: inline-block;
    padding: 10px 14px;
    background: linear-gradient(90deg, #00de07, #005ea2);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

#paypal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}


.cunha-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.cunha-play-btn:focus {
    outline: 3px solid rgba(44, 90, 160, 0.18);
    outline-offset: 2px;
}

.cunha-play-btn.fullwidth {
    display: block;
    width: 100%;
    text-align: center
}

@media (max-width:720px) {
    .cunha-play-btn {
        display: block;
        width: 100%;
        text-align: center
    }
}