body {
    background-image: url('../assets/bg-dim.png');
    background-repeat: repeat; /* Makes the texture tile */
    background-size: 500px; /* Keeps original texture size */
    min-height: 100vh;
}

* {
    /*font-family: 'Times New Roman';*/
}

/* components */

.card-container {
    width: 100%; /* Full width */
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.card {
    width: 85%; /* Set width */
    background-color: white; /* White background */
    padding: 20px;
    border-radius: 10px; /* Smooth corners */
    overflow: hidden;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    border: 1px solid #dfdfdf;
}

.card-like {
    background-color: white; /* White background */
    border-radius: 10px; /* Smooth corners */
    overflow: hidden;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    border: 1px solid #dfdfdf;
}

*.full { width: 100%; height: 100%; }

.card.hero {
    width: 100%;
    border-radius: 0;
    text-align: center;
    padding: calc(7.5% + 20px);
}

.card-shadow {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2);
    background-color: white;
}

p {
    margin-top: 7px;
    line-height: 1.25;
}

.flex {
    display: flex;
}
.flex-lg-only {
    display: block;
    /* display: flex;
    flex-direction: column; */
}

.br {
    height: 20px;
}

.h2 {
    font-weight: bold;
    font-size: 1.5rem;
}

.h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

.h3 {
    font-weight: bold;
}


/* customs */
.back-to-home {
    text-align: center;
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100%;
    padding-bottom: 20px;
}
.back-to-home > a {
    margin: auto;
    color: white;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333; /* White background */
    padding: 15px 20px;
    border-radius: 6vh; /* Smooth corners */
    overflow: hidden;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    border: 1px solid #dfdfdf;
    transition: transform 0.2s ease;
}
.back-to-home img {
    height: 100%;
    object-fit: contain;
    margin-left: 10px;
}
.back-to-home > a:hover {
    transform: scale(1.1);
}


@media (min-width: 1024px) { /* Laptops */

    .back-to-home {
        position: static;
    }

    .card {
      width: 80%;
      padding: 30px;
    }

    .h2 {
        font-size: 2rem;
    }
    .h1 {
        font-size: 3.5rem;
    }
    .br {
        height: 40px;
    }

    .card.hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 40px calc(10% + 30px);
        /* max-height: 30vh; */
    }
    .card.hero img {
        max-height: 25vh;
        /* width: 40%; */
    }

    .flex-lg-only {
        display: flex;
    }
}

table {
    width: 100%;
    border-collapse: collapse; /* Removes double borders */
    margin-top: 7px;
}
  
th, td {
border: 1px solid #ddd; /* Light gray border */
padding: 10px; /* Adds spacing inside cells */
text-align: left; /* Align text to left */
}

th {
background-color: #f4f4f4; /* Light gray background for headers */
font-weight: bold;
}
  


