<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* app/assets/stylesheets/admin.css */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    margin-bottom: 30px;
}

.admin-nav {
    flex-grow: 1;
}

.nav-section {
    margin-bottom: 20px;
}

.nav-section h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-section li {
    margin-bottom: 5px;
}

.nav-section a {
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-section a:hover {
    background-color: #34495e;
    color: white;
}

.admin-user-info {
    margin-top: auto;
    border-top: 1px solid #34495e;
    padding-top: 15px;
}

.logout-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.admin-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #f5f5f5;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.alert-danger {
    background-color: #f2dede;
    color: #a94442;
}</pre></body></html>