:root {
    --django-green: #0C4B33;
    --django-light-green: #44B78B;
    --django-dark-green: #082E20;
}
.db-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.db-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.db-card.active {
    border-color: var(--django-green);
}

.db-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.config-comparison {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.config-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.config-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.connection-test {
    background-color: #e7f3ff;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    border-radius: 0 5px 5px 0;
    margin: 1.5rem 0;
}

.performance-tip {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.security-warning {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.db-driver-table {
    width: 100%;
    border-collapse: collapse;
}

.db-driver-table th,
.db-driver-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.db-driver-table th {
    background-color: var(--django-light-green);
    color: white;
}

.requirement-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    background-color: var(--django-light-green);
    color: white;
    border-radius: 3px;
    font-size: 0.8rem;
}

.migration-status {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}

.status-success {
    color: #198754;
    font-weight: bold;
}

.status-warning {
    color: #ffc107;
    font-weight: bold;
}

.status-error {
    color: #dc3545;
    font-weight: bold;
}

.connection-diagram {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.connection-step {
    display: inline-block;
    margin: 0 1rem;
    text-align: center;
}

.connection-step .step-number {
    background-color: white;
    color: var(--django-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
}

.config-tabs .nav-link {
    color: var(--django-green);
    font-weight: 500;
}

.config-tabs .nav-link.active {
    background-color: var(--django-green);
    color: white;
}

.test-command {
    background-color: #2d2d2d;
    color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 1rem 0;
    position: relative;
}

.env-example {
    background-color: #1e1e1e;
    color: #d4d4d4;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 1rem 0;
    font-size: 0.85rem;
}

.optimization-checklist {
    list-style-type: none;
    padding-left: 0;
}

.optimization-checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.optimization-checklist li:before {
    content: "✓";
    color: var(--django-light-green);
    font-weight: bold;
    margin-right: 0.5rem;
}
