
body {
  background-color: #f8f9fa;
}
.card {
  border-radius: 12px;
}



.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    background-color: #2F3BA2;
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header h1 {
    font-size: 1.5rem;
}

.install-btn {
    background-color: white;
    color: #2F3BA2;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.app-content {
    flex: 1;
    position: relative;
}

.app-footer {
    background-color: #2F3BA2;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
}

/* Offline page styles */
.offline-container {
    padding: 2rem;
    text-align: center;
}

.offline-container h2 {
    color: #2F3BA2;
    margin-bottom: 1rem;
}

.offline-container p {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-header h1 {
        font-size: 1.2rem;
    }
    
    .install-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}