* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #E0F7FA, #FFFFFF);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.dashboard {
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Weather Card Styles */
.weather-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 20px auto;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.weather-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.weather-button, .convert-button {
    background-color: #4a90e2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.weather-button:hover, .convert-button:hover {
    background-color: #357ab7;
}

.weather-info-box {
    text-align: center;
    margin-top: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.weather-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.weather-icon {
    font-size: 50px;
}

.weather-details {
    margin-top: 10px;
}

.activity-box {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.weather-error {
    color: red;
    font-weight: bold;
}

.activity-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.activity-container h3 {
    margin-bottom: .5rem;
}

.activity-container p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}