* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
}

header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
    margin-bottom: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #212529;
}

h2 {
    font-size: 1.5em;
    margin: 20px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    color: #212529;
}

.stats-bar {
    color: #6c757d;
    font-size: 0.9em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #007bff;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 40px;
}

.install pre {
    background: #212529;
    color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
}

.install code {
    font-family: "Courier New", monospace;
    font-size: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:hover {
    background-color: #f8f9fa;
}

code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
}

.note {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 10px;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    color: #6c757d;
    font-size: 0.9em;
    text-align: center;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Admin-specific styles */
.message {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
}

.actions {
    white-space: nowrap;
}

.btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-approve {
    background-color: #28a745;
    color: white;
}

.btn-approve:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: white;
    margin-left: 5px;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.btn-revoke {
    background-color: #dc3545;
    color: white;
}

.btn-revoke:hover {
    background-color: #c82333;
}
