@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}


.page-header{
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
}


.ad-container {
    margin: 1rem 0;
    text-align: center;
}

.ad-container .adsbygoogle {
    display: inline-block;
}


/* Custom styles for table */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50; /* Dark blue for headings */
    margin-bottom: 15px; /* Margin below headings */
}

p {
    margin-bottom: 15px; /* Margin below paragraphs */
}

a {
    color: #3490dc; /* Link color */
    text-decoration: none; /* No underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Button styles */
button {
    background-color: #3490dc; /* Blue background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for buttons */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
}

button:hover {
    background-color: #2779bd; /* Darker blue on hover */
}

table{
    width: 100%;
}
.table {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
}

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

.table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

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

.table tr:hover {
    background-color: #f1f1f1;
}

.table td {
    white-space: nowrap;
}
