/* style.css - base styles for the admin panel */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f6f6;
    color: #222;
}
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: #2c3e50;
    margin-top: 0;
}
a {
    color: #0984e3;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}
input, select, textarea {
    font-family: inherit;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #dfe6e9;
    padding: 8px;
    margin-bottom: 10px;
}
button {
    background: #0984e3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #00b894;
}
