/* Weather Widget Styles */
.weather-widget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    height: 100%;
    min-height: 180px;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.weather-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--bs-primary);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.weather-temp-container {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bs-body-color);
}

.weather-desc {
    font-size: 0.9rem;
    color: var(--bs-secondary-color);
    font-weight: 500;
    text-transform: capitalize;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    border-top: 1px solid var(--bs-border-color);
    padding-top: 15px;
    gap: 10px;
}

.weather-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bs-body-color);
}

.weather-location {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

/* Edit Mode styling for weather widget */
.weather-config-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dashboard-edit-mode .weather-config-btn {
    display: flex;
}