.gauge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* Adjust based on your gauge size */
}

/* Ensure the text below each gauge is also centered */
.col-md-4 p {
    text-align: center;
}

.card-header {
    font-size: 1.5em !important;
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    padding: 10px 15px !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.card-body {
    margin-left: 20px !important;
    padding-left: 20px !important;
    margin-right: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-top: 10px !important;
}

.weather-card {
    background: linear-gradient(135deg, #6dd5ed, #2193b0) !important;
    color: white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease-in-out !important;
}

.weather-card:hover {
    transform: translateY(-10px) !important;
}

.maxmin-table, .maxmin-table th, .maxmin-table td {
    padding-top: 10px;
    background-color: rgba(255, 255, 255, 0.153); /* Semi-transparent white */
}

.maxmin-table {
    margin-top: 20px; /* Optional: adds spacing above the table */
    width: 100%; /* Ensures the table width is consistent */
    border-collapse: separate; /* Ensures borders are handled separately (needed for spacing) */
    border-spacing: 0; /* Removes default spacing between cells */
}