
body {
            font-family: Arial, sans-serif;
            margin: 20px;
}
.headline {
            border: 1px solid #ccc; /* Border around the box */
            border-radius: 8px; /* Rounded corners */
            padding: 20px; /* Padding inside the box */
            text-align: center; /* Center the text */
            margin: 20px; /* Margin around the box */
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}
.line1 {
            font-size: 27px; /* Larger font size */
            margin: 0; /* Remove default margin */
}
.line2 {
            font-size: 9px; /* Smaller font size */
            margin: 0; /* Remove default margin */
            font-style: italic;
}
.line3 {
            font-size: 25px; /* Larger font size */
            margin-top: 20px;
            margin-left: 20px;
            margin-right: 20px;
	    text-align: center;
}
.line4 {
            font-size: 14px; /* Larger font size */
            margin-left: 20px;
            margin-top: 20px;
            padding-left: 0;
            text-align: left;
            font-weight: normal;
}
.line5 {
            font-size: 12px; /* Larger font size */
            margin-left: 0;
            margin-bottom: 10px;
            padding-left: 0;
            text-align: center;
}
.tabs {
            display: flex;
            cursor: pointer;
            margin-bottom: 0px;
            max-width: 100%;  /* Ensure the image does not exceed the width of its container */
            justify-content: space-around; /* Distribute space evenly */
            border-bottom: 2px solid #ccc;
}
.tab {
            /* padding: 10px 20px; */
            width: 100%;
            flex: 1; /* Allow tabs to fill available space */
            padding: 15px 0; /* Vertical padding */
            border: 1px solid #ccc;
            border-radius: 25px 25px 0 0;
            background: #f1f1f1;
            margin-right: 1px;
            text-align: center; /* Center text */
}
.tab:hover {
            background: #e1e1e1;
}
.tab-content {
            border: 0px solid #ccc;
            border-radius: 0 0 5px 5px;
            padding: 0px;
            display: none;
}
.dropdown {
            margin-top: 20px;
}
.dropdown select {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
}
.table-container {
            width: 100%;
            overflow: hidden; /* To contain the table */
}
.topline {
            text-align: right;
            font-size: 14px;
}

table {
            width: 100%;
            margin: 0px;
            border-collapse: collapse;
            table-layout: fixed; /* Set fixed table layout */ 
}
th, td {
            border: 1px solid #ccc;
            padding: 12px;
            text-align: center;
}
.row1-col1 { background-color: #ff9999; } /* Light red */
.row1-col2 { background-color: #99ff99; } /* Light green */
.row1-col3 { background-color: #9999ff; } /* Light blue */
.row2-col1 { background-color: #ffff99; } /* Light yellow */
.row2-col2 { background-color: #ffcc99; } /* Light orange */
.row2-col3 { background-color: #cc99ff; } /* Light purple */
.responsive-image {
            max-width: 100%;  /* Ensure the image does not exceed the width of its container */
            height: auto;     /* Maintain the aspect ratio */
}
.centered-text {
            text-align: center;     /* Center text within the div */
            padding: 20px;         /* Optional padding */
            background-color: white; /* Optional background for contrast */
            border-radius: 8px;    /* Optional rounded corners */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
h1 {
            font-size: 1.8em; /* 40px/16=2.5em */
}
h2 {
            font-size: 1.45em; /* 30px/16=1.875em */
            text-align: center;
}
h3 {
            font-size: 12px; /* Larger font size */
            text-align: center;
	    margin-bottom: 10px
}

