/* Style for Hello World Widget */

body {
    background-color: #7f934e;
    color: #000000;
}

h4,
h5,
p {
    margin: 0;
    padding: 0;
    color: #FFF;

    /* 48 Source Sans Pro */
    font-family: "Source Sans Pro";

    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

a {
    color: #fbb088;
    text-decoration: none;
    display: flex;
    justify-content: center;
    padding: 5px 5px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
    padding: 5px 5px;
}

p {
    font-size: large;
}

#month {
    font-size: 25px;
}




.my-widget {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;


}

.container {

    display: grid;
    grid-template-areas:
        "venue venue"
        "more-info-button";

    padding: 20px 0px 20px 50px;
}

.button-container {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.venue-details {

    padding: 10px;
    max-width: 350px;


}

.container-schedule {
    min-width: 50%;
}

.venue {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
    margin-right: 30px;



}

.band-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50%;
    background-color: #1C2A40;
    min-height: 150px;
    min-width: 150px;
    border: 1px solid #fbb088;
    padding-left: 10px;
    font-size: 25px;
    margin-bottom: 20px;
    box-shadow: -4px 5px 15px black;

}

.left-margin {
    margin-left: -40px;
}

.center-margin {
    margin: 10px 0 10px 30px;
}

.venue-name {
    width: 100%;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: black -1px 2px 6px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.more-info-button {
    align-self: end;
}

.more-info-content {
    background-color: #1b2a3f;
    border: 1px solid #fbb088;
    padding: 15px;
    box-shadow: -4px 5px 15px black;
    max-width: 450px;


}

.button-style {
    background-color: #1b2a3f;
    border: 1px solid #fbb088;
    color: #DCE7F4;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
}

@media screen and (max-width: 1160px) {

    .my-widget {

        display: grid;
        grid-template-columns: auto;
        gap: 15px;
        align-items: center;
    }

    .container-schedule {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 60%;
    }

    .venue {
        margin-bottom: 20px;
        min-width: 100%;
    }


    .venue-details {
        padding: 5px;
        min-width: 100%;
    }

    .more-info-content {
        padding: 10px;
    }

    .button-style {
        padding: 8px 20px;
        font-size: 14px;
    }
}



@media screen and (max-width: 480px) {
    .my-widget {

        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }


    .venue {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px 0px 20px 0px;

        margin: 0px;
        max-width: 100%;
        margin-top: 30px;
        border-bottom: #1b2a3f solid 2px;
    }

    .venue-name {
        margin-top: 15px;
    }

    .container-schedule {
        width: 100%;
        max-width: 100%;
    }

    .center-margin {
        margin: 5px 5px;
    }

    .venue-details {
        width: 100%;
        text-align: center;

    }

    .band-schedule {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        min-width: 250px;
        margin-left: 0px;
        border-radius: 30px;
        min-height: 20px;
        margin-bottom: 0px;
    }



    .venue-name {
        width: 100%;
    }

    .button-style {
        padding: 15px 30px;
        margin: 15px auto 10px auto;
        font-size: 20px;
    }

    .left-margin {
        margin-left: 0px;
    }

    .more-info-content {
        max-width: 300px;
    }
}