body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

.weather-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0px auto; /* Reducir margen superior */
    width: 100%;
    max-width: 1200px;
    margin-top: 150px;
}

h1, h2 {
    text-align: center;
}

.current-weather {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.current-weather .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.current-weather .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding-left: 20px;
}

.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

.weather-horizontal {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.weather-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.weather-horizontal .weather-item {
    width: var(--weather-item-width, 250px);
    height: var(--weather-item-height, 400px);
}

.weather-details p {
    margin: 5px 0;
}

.icon {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
}

.small-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    vertical-align: middle;
}

.description {
    display: flex;
    align-items: center;
    justify-content: center;
}
