/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f0fa;
    color: #333;
    padding: 30px;
}

/* Main content container */
.MainSection {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2, h3 {
    color: #5c2d91;
    margin-bottom: 10px;
}

/* Timestamp */
.timestamp {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin: 8px 0;
}

/* Links */
a {
    color: #5c2d91;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #7a44d1;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
}

th {
    background-color: #e9dcf9;
    color: #4b2c72;
}

/* Forms */
form {
    margin-top: 20px;
}

input[type="text"],
input[type="number"],
input[type="submit"],
select {
    padding: 8px;
    margin-bottom: 12px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #5c2d91;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

input[type="submit"]:hover {
    background-color: #482179;
}