/* Thiết lập font chữ Arial không chân hiện đại giống mẫu */
body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

/* Khung bao ngoài viền đen mảnh chứa thông tin ngày giờ */
.info-box {
    border: 1px solid #000000;
    padding: 20px 25px;
    width: 320px;
    background-color: #ffffff;
    text-align: left; /* Căn lề trái nội dung bên trong */
}

/* Chữ tiêu đề hiển thị số ngày trong tháng */
#result-days {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Chuỗi chữ hiển thị ngày hiện tại (Hôm nay, thứ...) */
.highlight-text {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
}

/* Định dạng số đồng hồ điện tử to, đậm nét */
.clock-text {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0 15px 0;
}

/* Định dạng nút bấm Xem ngày giờ */
button {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    background-color: #f0f0f0;
    border: 1px solid #7a7a7a;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 2px;
}

button:hover {
    background-color: #e0e0e0;
}
