* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h5{
    margin: 15px 0;
    padding: 0;
}
p{
font-size:13px;
font-family: 'Arial Narrow', Arial, sans-serif;
font-stretch: condensed;
}

img{
max-width: 500px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    text-align: center;
    margin: 10px;
    max-width: 800px;
}
p{
	font-size: 16;
  text-align: justify;
  text-justify: inter-word;
}

.content {
    display: none; /* Hide content until the correct password is entered */
}

.password-container {
    margin-top: 25px;
}

input[type="password"] {
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 200px;
}

input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.error {
    color: red;
    margin-top: 20px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 5px 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

thead {
    background-color: #333;
    color: #fff;
}

th, td {
	font-size: 14px;
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
table.home th,
table.home td{
	font-size: 16px;
    padding: 10px;
}

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

tr:hover:not(thead tr) {
    background-color: #f1f1f1;
}

.read-more-container {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.read-more-text {
line-height: 1.3;
  overflow: hidden;
  max-height: 80px; /* Show only a few lines */
  transition: max-height 0.3s ease;
}

.read-more-text.show {
  max-height: 1000px; /* Large enough to show full text */
}

.read-more-btn {
  display: inline-block;
  margin-top: 8px;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
    th, td {
        padding: 10px;
    }
    img{
    max-width: 100%;
	}
}

@media only screen and (max-width: 480px) {
    th, td {
        padding: 8px;
    }
}
