/*
Theme Name: Munkalap APP
Theme URI: https://uptools.io
Author: upTools LLC
Author URI: https://uptools.io
Description: A custom single-page WordPress theme for Munkalap APP
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: munkalap-app
*/

:root {
    --bs-primary: #1a1f56;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.site-header {
    background-color: #f8f9fa;
    padding: 1rem 0;
}

.site-footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: 2rem;
}

.main-content {
    padding: 2rem 0;
}

.text-end p {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .text-end {
        text-align: left !important;
    }
}

/* Bootstrap overrides */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #151a4a;
    /* Slightly darker shade for hover/focus/active states */
    border-color: #151a4a;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}