/* ===== Global Styles ===== */
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 15px;
    margin: 0;
    color: #333;
}

h1, h2, h3 {
    margin-top: 0;
    text-align: center;
    color: #222;
}

p {
    margin: 10px 0;
    line-height: 1.5;
}

/* ===== Container ===== */
.container {
    max-width: 700px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== Forms ===== */
form {
    margin-top: 15px;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0073e6;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #005bb5;
}

/* ===== Tables ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

th, td {
    padding: 8px;
    border: 1px solid #ccc;
    text-align: left;
}

th {
    background: #f0f0f0;
}

/
