/* style.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f5; /* Very light gray background */
    color: #333333; /* Dark gray text for readability */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 2rem;
    margin-top: 3rem;
    width: 90%;
    max-width: 600px;
}

h1, h2, h3 {
    color: #111111;
    margin-top: 0;
}

p {
    line-height: 1.5;
    color: #555555;
}

/* Forms and Inputs */
input[type="text"], 
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 16px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #fafafa;
}

input[type="text"]:focus, 
input[type="password"]:focus {
    outline: none;
    border-color: #999999;
    background-color: #ffffff;
}

/* Buttons */
button, .btn {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #bbbbbb;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

button:hover, .btn:hover {
    background-color: #eeeeee;
    border-color: #999999;
}

/* Tables for Admin Logs */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9rem;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eeeeee;
}

th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #444444;
}

tr:hover {
    background-color: #fdfdfd;
}

/* Alerts / Messages */
.alert {
    padding: 12px;
    background-color: #f0f0f0;
    border-left: 4px solid #aaaaaa;
    margin-bottom: 20px;
    border-radius: 2px;
}