.evc-forecast-card-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    color: #ffffff !important;
    font-family: 'Trade Gothic LT Std Bold', Helvetica, Arial, Lucida, sans-serif;
    box-sizing: border-box;
	border-radius: 0 0 30px 30px;
	border: 1px solid rgba(255, 255, 255, 0.80);
	background: linear-gradient(110deg, rgba(255, 255, 255, 0.20) 30.96%, rgba(255, 255, 255, 0.60) 100.45%);
	box-shadow: 5px 15px 7.7px -3px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5.949999809265137px);
}

.evc-forecast-inner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
}

.evc-forecast-loading,
.evc-forecast-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1em;
    font-weight: bold;
}

.evc-forecast-scroll-container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.evc-forecast-scroll-container::-webkit-scrollbar {
    height: 8px;
    background-color: transparent;
}

.evc-forecast-scroll-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.evc-forecast-scroll-container:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
}

.evc-forecast-item {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 70px 5px;
    margin-right: 10px;
	border-radius: 30px;
    scroll-snap-align: start;
    text-align: center;
    height: 100%;
	background: linear-gradient(180deg, rgba(23, 23, 47, 0.80) 0%, rgba(23, 23, 47, 0.66) 100%);
	mix-blend-mode: multiply;
	box-shadow: 0 4px 7.7px 3px rgba(0, 0, 0, 0.25);
}

.evc-forecast-item:last-child {
    margin-right: 0;
}

.evc-forecast-item-time {
    font-size: 2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.evc-forecast-item-icon {
    width: 60px;
    height: 60px;
    margin: 5px 0;
}

.evc-forecast-item-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.evc-forecast-item-temp {
    font-size: 2em;
    font-weight: 700;
}

.evc-forecast-item-temp .evc-seven-day-high {
    margin-right: 5px;
}

.evc-forecast-item-temp .evc-seven-day-low {
    color: #cccccc !important;
}

.evc-forecast-item-desc {
	font-size: 1.5em;
	font-family: 'Trade Gothic LT Std Light',Helvetica,Arial,Lucida,sans-serif;
	line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .evc-forecast-card-container {
        height: 400px;
        padding-bottom: 0;
    }
    .evc-forecast-inner-content {
        padding: 15px;
    }
    .evc-forecast-item {
        flex-basis: 150px;
        margin-right: 15px;
        padding: 10px;
    }
    .evc-forecast-item-time {
        font-size: 2em;
    }
    .evc-forecast-item-icon {
        width: 70px;
        height: 70px;
    }
    .evc-forecast-item-temp {
        font-size: 2em;
    }
    .evc-forecast-item-desc {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .evc-forecast-card-container {
        height: 300px;
    }
    .evc-forecast-inner-content {
        padding: 10px;
    }
    .evc-forecast-item {
        flex-basis: calc((100% - 20px) / 5);
        min-width: 70px;
        margin-right: 5px;
        padding: 8px 2px;
    }
    .evc-forecast-item-time {
        font-size: 1.5em;
    }
    .evc-forecast-item-icon {
        width: 60px;
        height: 60px;
    }
    .evc-forecast-item-temp {
        font-size: 1.5em;
    }
    .evc-forecast-item-desc {
        font-size: 0.8em;
    }
}

@media (min-width: 1200px) {
    .evc-forecast-card-container {
        padding-bottom: 0;
        height: 600px;
        max-height: 600px;
    }

    .evc-forecast-inner-content {
        padding: 20px;
    }

    .evc-forecast-item {
        flex-basis: calc((100% - 120px) / 5);
        min-width: 100px;
        padding: 70px 10px;
        margin-right: 30px;
    }

    .evc-forecast-item-time {
        font-size: 3em;
    }

    .evc-forecast-item-icon {
        width: 72px;
        height: 72px;
    }

    .evc-forecast-item-temp {
        font-size: 3em;
    }

    .evc-forecast-item-desc {
        font-size: 25px;
		font-family: 'Trade Gothic LT Std Light',Helvetica,Arial,Lucida,sans-serif;
    }
}

