body {
    font-family: "Myanmar Text", Pyidaungsu, Arial, sans-serif;
    background: #f4f7fa;
    color: #222;
    margin: 0;
    padding: 0;
}

h1,
h2 {
    background: #4a90e2;
    color: #fff;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 0px 0px;
}

form {
    background: #fff;
    width: 80%;
    margin: 2rem auto;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

label {
    font-weight: bold;
    color: #4a90e2;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.6rem;
    margin: 0.3rem 0 1rem 0;
    border: 1px solid #bcdffb;
    border-radius: 5px;
    font-size: 1rem;
    background: #f9fcff;
    box-sizing: border-box;
}

button {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

button:hover {
    background: #357abd;
}

a {
    color: #4a90e2;
    text-decoration: none;
    margin: 0 0.5rem;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 95%;
    margin: 2rem auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #e3eaf1;
    text-align: left;
}

th {
    background: #eaf4fb;
    color: #357abd;
}

tr:last-child td {
    border-bottom: none;
}

pre {
    background: #f9fcff;
    padding: 1.2rem;
    border-radius: 7px;
    font-size: 1.1rem;
    line-height: 2;
    white-space: pre-wrap;
    margin: 2rem auto;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 600px) {

    form,
    table {
        width: 98%;
        padding: 1rem;
    }

    h1,
    h2 {
        font-size: 1.2rem;
        padding: 0.7rem;
    }
}