




.pt-sans-narrow-regular {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .pt-sans-narrow-bold {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
.banner {
    background-color: #f5f5f5;
    color: darkslategray;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#whatsAppBtn {
    max-width: 25%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-left: 20px;
}
#rosterHost{
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}
#waitlist {
    padding-left: 10px;
}
#dateTimeHost{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}
.table {
    padding: 10px;
}
img {
    max-height: 100%;
    /* margin-right: 20px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
}
#game-list {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.name_and_direction {
    padding: 10px 0px 10px 0px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;

}
/* CSS */
.button-13 {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  /* width: 100px; */
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}
#directionModal {
    display: flex;
    flex-direction: column; /* Display children in a column */
    justify-content: center; /* Center items along the vertical axis */
    align-items: center; /* Center items along the horizontal axis */
    height: 30vh; /* Example: Set a height to see the effect */
    /* Optionally, add padding, margin, or other styles */
}
.floatleft {
    margin: 0;
}
.hidden {
    display: none;
  }
.game-date {
    margin: 0 10px;
    cursor: pointer;
    padding: 5px 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}
.columns {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.column {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.column > a {
    text-decoration: none;
    padding: 10px;
}
h2, p {
    padding-top: 10px;
  
}
h2 {  
    margin: 0;  
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
}
p {
    margin: 0;
    font-family: Arial, sans-serif;
}
 
nav {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 100%);
    margin-bottom: 10px;
}

.modal {
    display: none;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Make sure overlay is scrollable */
    background-color: rgba(0, 0, 0, 0.9); /* Background overlay */
    padding-top: 60px; /* Padding at the top */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 80vh; /* Ensure it fits within the viewport */
    overflow-y: auto; /* Make content scrollable */
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.modal-content::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.red-background {
    background-color: rgb(221, 0, 0);
    color: white;
}

.yellow-background {
    background-color: yellow;
    color: black;
}

.green-background {
    background-color: darkgreen;
    color: white;
}

.blue-background {
    background-color: darkblue;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

tr:hover {
    background-color: #f9f9f9;
}
#closeModalButton {
    display: none;
    width: 100%;
}

/* Modal Styles */
#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

#modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Close Button Styles */
.close-button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.close-button:hover {
    background-color: #d32f2f;
}

/* Table Styles */
.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.event-table th, .event-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.event-table th {
    background-color: #f2f2f2;
}

.event-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
    /* body {
        background-image: url('images/siuu.png');
        background-size: cover; 
        background-position: center; 
        background-attachment: fixed;
        height: 100vh;
 } */
 #whatsAppBtn {
    max-width: 80%;

}
  body {
    position: relative;
  }
 body::before {
    content: '';
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/siuu.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* opacity: 0.5; */
    z-index: -1; 
  }
  
    .columns {
        flex-direction: column; 
        align-items: center; 
    }

    .column {
        width: 100%; 
        margin-bottom: 20px; 
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
    }
    #closeModalButton {
        display: block;
    }
    .modal-content {
        width: 100%;
        /* height: 100%; */
        margin: 0;
        padding: 0;
    }
    #closeModalButton {
        /* position: fixed; */
        max-height: 30px;
        right: 10px;
        margin: 0;
        padding: 8px 16px;
        background-color: #f1f1f1;
        border: none;
        /* border-radius: 20px; */
        cursor: pointer;
        z-index: 1;
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s, box-shadow 0.3s;
    }
    
    #closeModalButton:hover {
        background-color: #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .close {
        font-size: 20px;
    }
  
}

/* Media query for iPhone SE (2nd generation) */
@media only screen and (max-width: 390px) {
    #madeiraImg {
        width: 50%;
    }
    
}
@media (min-width: 600px) {
    #photo-gallery a {
        flex: 1 1 calc(33.33% - 40px); /* 3 columns for larger screens */
    }
}