/* BarrierEase Admin Styles */

.barrierease-header {
    margin-bottom: 20px;
}

.barrierease-header h1 {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
}

.barrierease-admin-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.barrierease-main-content .card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.barrierease-sidebar .card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.barrierease-status-active {
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.barrierease-status-active h3 {
    margin: 0 0 10px 0;
    color: #065f46;
}

.barrierease-status-inactive {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.barrierease-status-inactive h3 {
    margin: 0 0 10px 0;
    color: #92400e;
}

.barrierease-features ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.barrierease-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.barrierease-features li:last-child {
    border-bottom: none;
}

.barrierease-contact-info p {
    margin: 8px 0;
    line-height: 1.6;
}

.barrierease-links {
    list-style: none;
    padding: 0;
}

.barrierease-links li {
    margin: 8px 0;
}

.barrierease-links a {
    text-decoration: none;
    color: #2563eb;
}

.barrierease-links a:hover {
    text-decoration: underline;
}

.button-large {
    padding: 10px 20px !important;
    height: auto !important;
    font-size: 14px !important;
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

.small-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .barrierease-admin-container {
        grid-template-columns: 1fr;
    }
    
    .barrierease-header h1 {
        font-size: 20px;
    }
} 