﻿
body {
    font-family: Arial, sans-serif;
	font-size: 120%;
    margin: 20px;
    background-color: #f4f4f4;
	color: #000000; 
	box-sizing: border-box;
    border-radius: 20px;
}

header {
	text-align: center;
	padding: 20px;
	background-color: #005f73;
	color: #fff;
		box-sizing: border-box;
    border-radius: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}



.table-container {
    overflow-x: auto;
    margin: 20px auto;
    max-width: 90%;
}

.responsive-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #FFFFFF;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.responsive-table th, .responsive-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.responsive-table th {
	background-color: #0078d7;
	color: #000000;
}

.responsive-table tr:hover {
    background-color: #f1f1f1;
}

@media (max-width: 600px) {
    .responsive-table th, .responsive-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .responsive-table th {
        background-color: #005a9e;
    }
    .responsive-table td {
        border: none;
        padding: 10px;
    }
    .responsive-table td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }


footer {
	font-size: 100%;
	text-align: center;
	padding: 20px;
background-color: rgb(255, 255, 255);
 	box-sizing: border-box;
    border-radius: 20px;  
    }
    } }
    