/* ===== Botxp.io Inspired Theme for Bootstrap 5 ===== */

/* Body & Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: #212529;
}

/* Primary Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Secondary Buttons */
.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 0.5rem;
}

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #545b62;
}

/* Forms & Inputs */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
    padding: 0.625rem 0.75rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
}

/* Cards / Panels */
.card {
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
    color: #212529;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #0d6efd;
}

/* Sidebar (if any) */
.sidebar {
    background-color: #ffffff;
    border-right: 1px solid #dee2e6;
    min-height: 100vh;
    padding: 1rem;
}

.sidebar .nav-link {
    color: #212529;
    margin-bottom: 0.5rem;
}

.sidebar .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* Dashboard Cards */
.dashboard-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
}

/* Profile Page */
.profile-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.profile-card h4 {
    font-weight: 500;
}

/* Alerts / Messages */
.alert {
    border-radius: 0.5rem;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    color: #6c757d;
    text-align: center;
    font-size: 0.875rem;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.error {
    color: red;
}