/* static/css/style.css */

:root {
    --primary-color: #4b2c85; /* Blueberry Purple */
    --secondary-color: #28a745; /* Fresh Green */
    --light-bg: #f8f9fa;
    --dark-text: #333;
}

body {
    background-color: #fdfdfd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
}

/* Navbar Tweaks */
.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

/* Buttons */
.btn-blueberry {
    background-color: var(--primary-color);
    color: white;
}
.btn-blueberry:hover {
    background-color: #3a226b;
    color: white;
}

.btn-green {
    background-color: var(--secondary-color);
    color: white;
}
.btn-green:hover {
    background-color: #218838;
    color: white;
}