.toast {
    min-width: 300px;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.toast-container {
    z-index: 1056;
}

.toast .toast-body {
    padding: 1rem 1.5rem;
}

.toast .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    font-size: 1.2rem;
    padding: 1rem;
}

.bg-success {
    background-color: #28a745 !important;
}

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

.bg-warning {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.toast .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin: 0.5rem;
}

.toast i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.toast.showing {
    opacity: 0;
    transform: translateY(20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.footer-main {
    background: #5C9CD1;
    color: white;
    padding: 24px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pwa-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pwa-popup {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    width: 400px;
}

.dark-mode-transition {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-content {
    margin-top: 80px;
}

.logo-img {
    height: 40px;
    margin-bottom: 12px;
}

.copyright-text {
    font-size: 13px;
}

.share-icon {
    height: 16px;
} 