body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 30px;
    color: #333;
}

h2 {
    color: #222;
    border-bottom: 2px solid #ddd;
    padding-bottom: 6px;
    margin-top: 0;
    font-size: 1.5rem;
}

form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

form div {
    margin-bottom: 16px;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="file"],
input[type="text"]
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    border-color: #0077cc;
    outline: none;
}

button {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

button:hover {
    background-color: #005fa3;
}

a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #005fa3;
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #555;
}

td a {
    margin-right: 8px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    form, table {
        width: 100%;
    }
}
