/* style.css */

.dkradiogroup {
    background: #EBEEF4;
    border-radius: 8px;
    border: solid 3px #fff;
    padding: 12px 4px;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgb(27 31 35 / 11%) 0px 0px 0px 1px;
}

.dkradiogroup .dkradio {
  flex: 1 1 auto;
  text-align: center;
}

.dkradiogroup .dkradio input {
  display: none;
}

.dkradiogroup .dkradio .dkname {
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  padding: 12px;
  color: rgba(51, 65, 85, 1);
}

.dkradiogroup .dkradio input:checked + .dkname {
  background-color: #fff;
  font-weight: 600;
}

/* Toggle Switch Style */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0D61FF;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.netcompanygroup {
    margin-left: 20px;
    margin-top: 10px;
}

.netcompanygroup label {
    margin-right: 10px;
}

.netcompanygroup select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Adjust display for mobile responsiveness */
@media (max-width: 768px) {
    .displayspotprices {
        flex-direction: column;
        align-items: flex-start;
    }

    .dkradiogroup, .netcompanygroup {
        margin-top: 10px;
    }
}
