/* Custom styles for logo */
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
}

/* Toast styling */
.toast-container {
    position: fixed;
    top: 80px; /* Position below navbar */
    right: 20px;
    z-index: 1050;
}

.toast {
    min-width: 300px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .toast-container {
        top: 60px; /* Smaller gap on mobile due to smaller navbar */
    }
}

/* Toast header background colors based on message type */
.toast-header.bg-success {
    background-color: #28a745 !important;
}

.toast-header.bg-info {
    background-color: #17a2b8 !important;
}

.toast-header.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.toast-header.bg-danger {
    background-color: #dc3545 !important;
}

.toast-header.bg-error {
    background-color: #dc3545 !important;
}