.card-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically on mobile */
    align-items: center; /* Center cards */
    gap: 1rem; /* Add space between cards */
    padding: 1rem;
} 

.simple-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
    text-align: center;
}          

/* Temperature Widget Styles */ 
.temperature-widget { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: var(--color-dark); 
    padding: 10px 15px; 
    border-radius: 5px; 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); 
    font-size: 1rem; 
    font-weight: bold; 
    color: white;  
}

@media (min-width: 768px) {
    .card-container {
        flex-direction: row; /* Align cards in a row */
        flex-wrap: wrap; /* Allow wrapping if space is limited */
        justify-content: center; /* Center cards in the container */
    }

    .simple-card {
        width: auto; /* Allow cards to size dynamically */
        flex: 1 1 280px; /* Flexible sizing for desktop */
    }
}                                                                                                                                      

/* button styles */
.button {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    text-decoration: none; /* new */
}

/* button color variants */
.button-primary {
    background-color: #999AC6;
    color: white;
}

.button-secondary {
    background-color: #0B3954;
    color: white;
}

.button-dark {
    background-color: #798071;
    color: white;
}

.button-bright {
    background-color: #FF5A5F;
    color: black;
}

/* Hover Effect for Buttons */ 
.button:hover { 
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */ 
    transform: translateY(-2px); /* Lifts the button slightly */ 
    transition: all 0.2s ease-in-out; /* Smooth transition */ 
}                               

