/* static/styles.css */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 50px; /* Adjust this value as needed */
}

header h1 {
    margin-bottom: 0; /* Remove bottom margin for better vertical alignment */
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: #ddd;
}

footer {
    background-color: #343a40; /* Bootstrap dark color */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Specific styling for mobile devices */
@media (max-width: 767.98px) {
    .navbar-collapse {
        text-align: right;
    }

    .navbar-nav {
        float: none;
        margin: 0 auto;
    }

    .navbar-nav .nav-item {
        float: none;
    }

    .navbar-nav .nav-link {
        text-align: right;
    }

    .action-row {
        display: none;
    }
}

.icon-badge {
    font-size: 1em;
    padding: 0.5em 0.7em;
    vertical-align: middle;
}

/* Flexbox container for statistics */
.d-flex.justify-content-between.mb-4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
