/* Global Styles for Payroll System */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f6fa;
    color: #333;
    line-height: 1.6;
    padding: 10px;
}

h1, h2, h3 {
    margin-bottom: 15px;
    color: #2f3640;
}

a {
    color: #0984e3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #dcdde1;
    border-radius: 5px;
}

form button {
    background-color: #00a8ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0097e6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #dcdde1;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #00a8ff;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f1f2f6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00a8ff;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.navbar a {
    color: white;
    margin-left: 15px;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    table, form input, form select, form button {
        width: 100%;
        font-size: 14px;
    }
}
