.tasktoolbox {
    position: absolute;
    width: auto;
    height: auto;
    right: 30px;
    bottom: 50px;
    z-index: 1001;
    background-color: transparent;
}

.btn-add {
    border: none;
    background-color: transparent;
    background: url('/assets/add.png') no-repeat center;
    width: 64px;
    height: 64px;
    border-radius: 64px;
    box-shadow: 2px 2px 5px lightslategray;
}

.page-container {
    min-height: calc(100vh - 50px);
    color: inherit;
    background-color: #f4f4f4;
    padding: 30px 0;
}

/* Bootstrap overrides */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
}
.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.9);
}



.flex { 
    display: flex !important;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.message-container {
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 1000;
    max-width: 300px;
}


@media (max-width: 400px) {
    .message-container {
        width: 100%;
        max-width: 400px;
        left: 0;
    }
}