#custom-tool-app {
font-family: Chenla, sans-serif;
color: #f1f1f1;
max-width: 600px;
min-height: 400px;
max-height: 400px;
margin: 20px auto;
background: radial-gradient(circle at top, #334D66, #1E2E3D);
border: 2px solid #ef981f;
border-radius: 30px;
padding: 20px;
box-shadow: 0 0 10px rgba(239, 152, 31, 0.3);
}
.tool-inner-wrapper {
display: flex;
flex-direction: column;
height: 100%;
}
.intro-line {
text-align: center;
padding: 0 10px;
margin-bottom: 20px;
font-size: 16px;
width: 100%;
}
input[type="range"] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 10px;
border-radius: 5px;
background: #1E2E3D;
outline: none;
position: relative;
} input[type="range"]::-webkit-slider-runnable-track {
height: 10px;
border-radius: 5px;
background: linear-gradient(to bottom, #ffc25a, #ef981f) left center,
#223445;
background-size: var(--progress, 50%) 100%, 100% 100%;
background-repeat: no-repeat;
box-shadow: inset 0 0 8px #1E2E3D;
} input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 40px;
height: 20px;
background: #fdfdfd;
border-radius: 50%;
transform: translateY(-5px);
cursor: pointer;
box-shadow: 0 0 10px #ef981f, 0 2px 5px rgba(239, 152, 31, 0.4);
position: relative;
z-index: 2;
} input[type="range"]::-moz-range-progress {
background: linear-gradient(to bottom, #ffc25a, #ef981f);
height: 10px;
border-radius: 5px;
box-shadow: inset 0 0 8px #ef981f;
} input[type="range"]::-moz-range-track {
background-color: #1E2E3D;
height: 10px;
border-radius: 5px;
} input[type="range"]::-moz-range-thumb {
width: 20px;
height: 20px;
background: #ef981f;
border: 2px solid #1e2e3d;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 0 10px #ef981f;
}
.form-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start; gap: 20px;
position: relative;
}
.form-block {
display: flex;
margin-top: 15px;
flex-direction: column;
align-items: center;
gap: 8px;
}
.label {
font-size: 20px;
color: #f1f1f1;
}
.value {
font-size: 20px;
font-weight: bold;
color: #ef981f;
}
.form-button {
margin-top: auto; display: flex;
justify-content: center;
}
@media screen and (max-width: 600px) {
#custom-tool-app {
padding-left: 5px !important;
padding-right: 5px !important;
}
.form-section {
padding-left: 5px !important;
padding-right: 5px !important;
}
}
#custom-tool-app ul {
margin: 0;
padding: 0;
list-style: none;
width: 100%; }
.highlight {
color: #ef981f;
}
@media screen and (max-width: 600px) {
.intro-line {
font-size: 14px;
padding: 0 5px;
}
.label {
font-size: 16px;
}
}
.orange_button {
margin-top: 15px;
padding: 12px 20px;
border: none;
border-radius: 15px;
background-color: #EF981F;
color: white;
font-size: 18px;
font-weight: bold;
cursor: pointer;
width: 80%;
position: relative;
overflow: hidden;
transition: background 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease;
box-shadow: 0 0 8px rgba(239, 152, 31, 0.4);
}
.orange_button:hover {
background-color: #f4a832;
box-shadow: 0 0 12px rgba(239, 152, 31, 0.6);
}
.orange_button::after {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s ease-in-out;
pointer-events: none;
}
.orange_button:hover::after {
left: 100%;
}
.orange_button:active {
transform: scale(0.98);
background-color: transparent;
box-shadow: 0 0 20px rgba(239, 152, 31, 0.6);
} .form-row {
display: flex;
gap: 10px;
margin-top: 10px;
flex-wrap: wrap;
align-items: center;
}
.form-row input,
.form-row textarea {
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 6px;
width: 100%;
flex: 1;
background-color: rgba(255,255,255,0.1);
color: white;
}
.form-subheading {
text-align: center;
color: #ccc;
font-size: 16px;
margin-bottom: 10px;
} .form-row input:focus,
.form-row textarea:focus {
outline: none;
border: 1px solid #EF981F;
box-shadow:
0 0 4px #EF981F,
0 0 8px rgba(239, 152, 31, 0.8),
0 0 12px rgba(239, 152, 31, 0.4);
animation: electricPulse 0.7s ease-in-out;
background-color: rgba(255, 255, 255, 0.08);
color: white;
}
.form-note {
text-align: center;
font-size: 10px;
color: #aaa;
margin-top: 10px;
} @keyframes electricPulse {
0% {
box-shadow:
0 0 2px #EF981F,
0 0 4px rgba(239, 152, 31, 0.6),
0 0 6px rgba(239, 152, 31, 0.3);
transform: scale(1);
}
50% {
box-shadow:
0 0 6px #EF981F,
0 0 12px rgba(239, 152, 31, 0.9),
0 0 20px rgba(239, 152, 31, 0.5);
transform: scale(1.01);
}
100% {
box-shadow:
0 0 4px #EF981F,
0 0 8px rgba(239, 152, 31, 0.6),
0 0 10px rgba(239, 152, 31, 0.3);
transform: scale(1);
}
}  .form-row-final {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 10px;
justify-content: center; align-items: center; text-align: center; }
.battery-selection {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}
.battery-options {
display: flex;
flex-direction: column;
gap: 10px;
color: white;
font-size: 14px;
}
.battery-title {
font-weight: bold;
margin-bottom: 5px;
}
.battery-options label {
margin: 0;
}
.battery-options .battery-button {
display: inline-flex;
}
.battery-button {
background-color: rgba(255, 255, 255, 0.05);
border: 2px solid #1e2e3d;
border-radius: 20px;
padding: 6px 15px;
display: inline-flex;
align-items: center;
gap: 8px;
cursor: pointer;
transition: background-color 0.2s ease, color 0.2s ease;
user-select: none;
}
.battery-button input {
display: none;
}
.battery-button.selected {
border: 2px solid #EF981F;
font-weight: bold;
}
.panel-count {
color: #FFF;
font-weight: bold;
font-size: 22px;
text-shadow:
0 0 6px rgba(239, 152, 31, 0.6),
0 0 10px rgba(239, 152, 31, 0.4);
}
.warning-text {
padding: 3px;
margin-top: 0px;
border-radius: 8px;
text-align: center;
font-weight: bold;
}