/* General Body Styling */
body {
    background-color: #333; /* Light grey background */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Container for content with white background */
.container {
    background-color: #fff;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius:10px;
}

/* Header and Footer */
header, footer {
    padding: 10px 0;
}

header h1, footer p {
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #222;
    margin: 10px 0;
    font-weight: bold;
}

p {
    margin: 10px 0;
    line-height: 1.6;
}

/* Links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

/* Forms */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"],
button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover,
button:hover {
    background-color: #0056b3;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}
