body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center content */
}

h1 {
    text-align: center;
    color: #0a3161;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
}

.stat {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 calc(25% - 20px); /* Set each box to take up 25% of the container */
    margin: 10px;
    text-align: center;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
	min-height: 100px; /* Điều chỉnh chiều cao */
}

.stat h2 {
    margin: 0;
    font-size: 1em;
    margin-bottom: 0; /* Remove space below the heading */
}

.stat p {
    font-size: 2em;
    font-weight: bold;
    margin: 0; /* Remove any default margin from <p> */
    display: inline-block; /* Prevent line breaks and align inline */
    vertical-align: middle; /* Align the number vertically */
}

.stat a {
    font-size: 2em;
    font-weight: bold;
}

.stat:hover {
    background-color: #0056b3;
}
