.ads-radio-card {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: sans-serif;
}

.ads-radio-card h2 {
    margin-bottom: 20px;
}

.ads-radio-card label {
    display:block;
    margin-top:15px;
    font-weight:600;
}

.ads-radio-card select,
.ads-radio-card input {
    width:100%;
    padding:10px;
    margin-top:5px;
    border-radius:6px !important;
    border:1px solid #ddd !important;
}

.ads-result-box {
    margin-top:25px;
    padding:20px;
    background:#f5f7fa;
    border-radius:8px;
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.ads-result-box span {
    display:block;
    font-size:14px;
    color:#666;
}

.ads-btn-primary {
    width:100%;
    padding:12px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.ads-btn-primary:hover {
    background:#333;
    color:#fff !important;
}

.ads-btn-secondary {
    margin-left: 5px;
    padding: 12px;
    background:#eee;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.ads-modal-overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.ads-modal {
    background:#fff;
    padding:30px;
    width:400px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.ads-modal input {
    width:100%;
    padding:10px;
    margin-bottom:15px;
    border-radius:6px;
    border:1px solid #ddd;
}

.ads-modal-buttons {
    display:flex;
    justify-content:space-between;
}

.ads-tv-switch{
    display:flex;
    gap:6px;
    padding:6px;
    background:#f5f7fa;
    border:1px solid #e6e9ef;
    border-radius:12px;
    margin: 0 0 14px 0;
  }
  
  .ads-tv-switch input{
    position:absolute;
    opacity:0;
    pointer-events:none;
  }
  
  .ads-tv-switch label{
    margin:0;     
    flex:1;
    padding:10px 12px;
    border-radius:10px;
    cursor:pointer;
    user-select:none;
    font-weight:700;
    font-size:14px;
    text-align:center;
    color:#111;
    transition: all .15s ease;
    background:transparent;
  }
  
  .ads-tv-switch label:hover{
    background:#eef1f6;
  }
  
  .ads-tv-switch input:checked + span{
    display:block;
    background:#111;
    color:#fff;
    border-radius:10px;
    padding:10px 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }
  
  /* optional: чтобы span занимал весь label */
  .ads-tv-switch label > span{
    display:block;
    border-radius:10px;
    padding:10px 12px;
  }