.snxt-simple-energy-profit-wrapper {
    padding: 2rem;
    border-radius: 1rem;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

.snxt-profit-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.snxt-profit-row {
    flex: 1 1 30%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.snxt-profit-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.snxt-profit-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.snxt-profit-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-size: 1rem;
    background: #f8f5ef;
    color: #222;
}

.snxt-profit-unit {
    margin-left: 0.5rem;
    font-weight: bold;
}

.snxt-profit-slider {
    width: 100%;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #ccc;
    outline: none;
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
    cursor: pointer;
}

.snxt-profit-slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #222;
    cursor: pointer;
    border: none;
}

.snxt-profit-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #222;
    cursor: pointer;
    border: none;
}

.snxt-profit-slider-value {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    text-align: right;
    color: #333;
}

.snxt-profit-result-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}


.snxt-profit-action {
    text-align: center;
    margin-top: 1rem;
}

.snx-profit-button {
    display: inline-block;
    background: #91ff91;
    color: #222;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.snx-profit-button:hover {
    background: #44dd44;
}

.snxt-profit-result-block > .snxt-profit-label {
	margin-bottom: 0.3rem; /* oder z. B. 4px */
}

.snx-progressbar-wrapper {
	margin: 1em 0;
}
.snx-progressbar-title {
	font-weight: bold;
	margin-bottom: 0.5em;
}
.snx-progressbar-bar {
	background: #eee;
	border-radius: 20px;
	overflow: hidden;
	height: 50px;
}
.snx-progressbar-inner {
	background: #00a8e8;
	color: white;
	text-align: center;
	height: 100%;
	line-height: 20px;
	transition: width 0.8s ease;
}

.snx-progressbar-inner.standard {
	background-color: #ffaa00; /* z.B. Gelb für Standard */
}

.snx-progressbar-inner.sonnenext {
	background-color: #00c853; /* z.B. Grün für SonneNext */
}

.snx-profit-button  {
	background: linear-gradient(90deg, #8FFF8B, white, #8FFF8B) !important;
	border: 1px solid black;
	transition-duration: 300ms;
}

.snx-profit-button:hover {
	background: linear-gradient(135deg, #8FFF8B 40%, white 50%, #8FFF8B 60%) !important;
	border: 1px solid black;
}


@media (max-width: 768px) {
    .snxt-profit-form {
        flex-direction: column;
    }
    .snxt-profit-row {
        min-width: 100%;
    }
}