/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 40px;
}

/* Headings */
h1, h2 {
    color: #2c3e50;
}

/* Buttons */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #2980b9;
}

/* Input fields */
input[type="text"], input[type="file"] {
    padding: 6px;
    width: 300px;
    margin-bottom: 10px;
}

/* Forms */
form {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Status messages */
#status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    background-color: #e1f0ff;
    border: 1px solid #b3d8ff;
}

/* Horizontal rules */
hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

/* Tables (dashboard) */
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

th, td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Highlight expiring API keys in dashboard */
.expiring {
    background-color: #f8d7da; /* red */
}