.admin-dashboard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 2rem;
    color: white;
    margin: 2rem 0;
    text-align: center;
}

.admin-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.admin-feature-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--django-light-green);
}

.admin-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--django-green);
}

.setup-steps {
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.step-with-screenshot {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background-color: var(--django-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 200px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 1rem 0;
    flex-shrink: 0;
    width: 300px;
    margin-left: 2rem;
}

.admin-model-config {
    background-color: #d1ecf1;
    border-left: 4px solid #0dcaf0;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.customization-examples {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.customization-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1.5rem;
}

.admin-action-flow {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.action-step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
}

.action-arrow {
    text-align: center;
    margin: 0.5rem 0;
    color: var(--django-green);
    font-weight: bold;
}

.admin-tips {
    background-color: #e7f3ff;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.security-notes {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.interactive-admin {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 5px;
    padding: 2rem;
    margin: 2rem 0;
}

.admin-preview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 1rem;
}

.admin-sidebar {
    background: #2c3e50;
    color: white;
    border-radius: 5px;
    padding: 1rem;
}

.admin-content {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1rem;
}

.admin-model-list {
    list-style: none;
    padding: 0;
}

.admin-model-item {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.admin-model-item:hover {
    background-color: #34495e;
}

.admin-model-item.active {
    background-color: var(--django-light-green);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: #f8f9fa;
}

.filter-sidebar {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.code-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.comparison-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--django-green);
}

.advanced-features {
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--django-green);
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
}

.admin-checklist {
    list-style-type: none;
    padding-left: 0;
}

.admin-checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 2rem;
}

.admin-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--django-light-green);
    font-weight: bold;
}
