/*body {
    background-image: url('../assets/professional/Prime2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Light Mode Specific Styling 
[data-md-color-scheme="default"] {
    background-color: rgba(255, 255, 255, 0.7);
}*/

/* Dark Mode Specific Styling 
[data-md-color-scheme="slate"] {
    background-color: rgba(0, 0, 0, 0.7);
}*/

/*.md-main {
    min-height: 100vh;
    overflow-y: auto;
}*/

/** Marigold page styling **/
#map {
    position: relative;
    z-index: 1;
    height: 400px;
    width: 100%;
    margin: 20px 0;
}

#openweathermap-widget-5 img {
    z-index: 1;
}

.flight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flight-header {
    text-align: center;
    color: indigo;
    margin-bottom: 30px;
}

.flight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.flight-card {
    background: transparent;
    border-radius: 10px;
    border-style: solid;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.flight-card:hover {
    transform: translateY(-5px);
}

.flight-number {
    font-size: 1.2em;
    font-weight: bold;
    color: cornflowerblue;
    margin-bottom: 15px;
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.airport-code {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: indigo;
}

.airport-name {
    display: block;
    font-size: 0.9em;
    color: #7f8c8d;
}

.flight-arrow {
    color: royalblue;
    font-size: 1.5em;
}

.flight-status {
    text-align: center;
    padding: 8px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.active {
    background: #2ecc71;
    color: white;
}

.scheduled {
    background: #3498db;
    color: white;
}

.delayed {
    background: #e74c3c;
    color: white;
}

.cancelled {
    background: #95a5a6;
    color: white;
}

/** Investing page  styling **/
.widget-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.stock-widget,
.market-widget {
    width: 48%;
}

.stock-widget>h1,
.market-widget>h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .widget-container {
        flex-direction: column;
    }

    .stock-widget,
    .market-widget {
        width: 100%;
        margin-bottom: 20px;
    }
}