* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

a {
    color: #0a7dbf;
    text-decoration: none;
}

.header {
    background-color: #222;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header img {
    height: 80px;
}

.header-text h1 {
    margin-bottom: 5px;
}

.container {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

form {
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="time"],
select {
    padding: 8px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

button,
input[type="submit"] {
    padding: 10px 20px;
    background-color: #0a7dbf;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background-color: #095a8c;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

ul {
    list-style-type: none;
    margin-top: 15px;
}

ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        flex-direction: column;
        text-align: center;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="time"],
    select {
        width: 100%;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    td {
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }

    th {
        display: none;
    }
}