/* public_html/css/admin_styles.css */

<style>

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    color: #333;
}

.login-container, .admin-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.admin-header h1 {
    margin: 0;
    font-size: 24px;
}

.admin-header nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.admin-header nav a:hover {
    color: #0056b3;
}

.posts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.posts-table th, .posts-table td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: left;
}

.posts-table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.posts-table .actions a {
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
}

.posts-table .actions a:hover {
    text-decoration: underline;
}


</style>
