/* Focus Gently Branded Theme */

/* Body and general styling */
body {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    font-size: 16px;
    min-height: 100vh;
}

/* Focus Gently Cards */
.card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}

.card-body {
    padding: 2rem;
    background-color: #ffffff;
}

/* Focus Gently Navigation */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    color: #000000 !important;
    letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #2980b9 !important;
    background-color: #f8fcff;
}

/* Focus Gently Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: #ffffff;
    color: #2980b9;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background-color: #f8fcff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
    color: #2980b9;
}

.btn-outline-primary {
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #ffffff;
    color: #2980b9;
    transform: translateY(-1px);
}

.btn-outline-secondary {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Focus Gently Form Styling */
.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
    color: #000000;
}

.form-control:focus, .form-select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, 0.2);
    background-color: #ffffff;
    outline: none;
    color: #000000;
}

.form-label {
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Alert styling with better contrast */
.alert {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #ffffff;
    color: #000000;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Table styling */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.table td {
    border-bottom: 1px solid #e9ecef;
}

/* Remove heavy dashboard styling */
.dashboard-stats .card {
    border: 1px solid #e9ecef;
    background-color: #fff;
}

.dashboard-stats .card-body {
    padding: 1rem;
}

/* Minimal badge styling */
.badge {
    font-weight: 500;
    border-radius: 4px;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Remove unnecessary icons and decorations */
.fa-3x, .fa-2x {
    display: none;
}

/* Simplified list styling */
.list-unstyled li {
    padding: 0.25rem 0;
}

/* Clean input groups */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #6c757d;
}

/* Focus Gently Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

h1 { 
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

h2 { 
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #000000;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

h4, h5, h6 {
    color: #1a1a1a;
    font-weight: 600;
}

.lead {
    font-size: 1.1rem;
    color: #222222;
    line-height: 1.6;
    font-weight: 500;
}

/* Paragraph text */
p {
    color: #1a1a1a;
    line-height: 1.7;
    font-weight: 400;
}

/* List items */
li {
    color: #1a1a1a;
}

/* Focus Gently Text Colors */
.text-muted {
    color: #666666 !important;
    font-weight: 400;
}

.text-primary {
    color: #2980b9 !important;
}

/* Special styling for feature highlights */
.feature-highlight {
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4f8 100%);
    border-left: 4px solid #2980b9;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Table styling */
.table {
    background-color: #ffffff;
}

.table th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    color: #000000;
    font-weight: 600;
}

.table td {
    border-bottom: 1px solid #e0e0e0;
    color: #000000;
    background-color: #ffffff;
}

/* Minimal badge styling */
.badge {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.badge.bg-success {
    background-color: #f8fff8 !important;
    color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #fff8f0 !important;
    color: #ffc107 !important;
}

/* Dropdown menu styling */
.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: #ffffff;
}

.dropdown-item {
    color: #000000;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000000;
}

/* Minimal container spacing */
.container {
    max-width: 1200px;
}