/* Women Connect Kenya - Main CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4a148c, #6a1b9a);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.3em;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.navigation {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation a {
    color: #4a148c;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.navigation a:hover {
    background: #f3e5f5;
    color: #6a1b9a;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: 60vh;
}

.welcome-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-box h2 {
    color: #4a148c;
    margin-bottom: 20px;
    font-size: 2em;
}

.welcome-box p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Status Box */
.status-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #28a745;
}

.status-box h3 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 5px;
}

.btn-primary {
    background: #4a148c;
    color: white;
}

.btn-primary:hover {
    background: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

.btn-secondary {
    background: white;
    color: #4a148c;
    border: 2px solid #4a148c;
}

.btn-secondary:hover {
    background: #f3e5f5;
    transform: translateY(-2px);
}

.actions {
    margin-top: 30px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    margin: 10px 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1.1em;
    }
    
    .navigation a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
    
    .welcome-box {
        padding: 20px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}
/* Dashboard Styles */
.dashboard-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid #4CAF50;
}

.stat-card.donations {
    border-left-color: #2196F3;
}

.stat-card.events {
    border-left-color: #FF9800;
}

.stat-card.health {
    border-left-color: #9C27B0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Data Tables */
.data-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.data-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.data-table tr:hover {
    background: #f8f9fa;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-admin {
    background: #dc3545;
    color: white;
}

.badge-user {
    background: #28a745;
    color: white;
}

.badge-editor {
    background: #17a2b8;
    color: white;
}

/* Status Indicators */
.status {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.action-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 14px;
}

.action-bar {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}