/**
 * File: assets/css/themes/default.css
 * Description: Default theme for Example 001
 * Location: apps/example_001/assets/css/themes/default.css
 */

.theme-default {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --black: #000000;
    --border-color: #dee2e6;
    --text-color: #212529;
    --text-muted: #6c757d;
}

.theme-default .hero-section {
    background: linear-gradient(135deg, #007bff, #17a2b8);
}

.theme-default .ground-card:hover {
    border-color: var(--primary-color);
}

.theme-default .btn-primary {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.theme-default .btn-primary:hover {
    background-color: #0056b3;
    color: var(--white) !important;
}

.theme-default .btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.theme-default .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.theme-default .highlight-box {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    background-color: #007bff !important;
    color: var(--white) !important;
}

.theme-default .highlight-box h2,
.theme-default .highlight-box h3,
.theme-default .highlight-box h4,
.theme-default .highlight-box p,
.theme-default .highlight-box ul,
.theme-default .highlight-box ul li,
.theme-default .highlight-box a {
    color: var(--white) !important;
}

