box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
background-color: #1c1c1c;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.custom-radio-group {
background-color: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
max-width: 300px;
}
.custom-radio {
display: flex;
align-items: center;
margin-bottom: 10px;
color: #ddd;
font-size: 16px;
cursor: pointer;
}
.custom-radio input {
display: none;
}
.radio-button {
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid #bbb;
display: inline-block;
margin-right: 10px;
transition: border 0.3s, background-color 0.3s;
}
.custom-radio input:checked + .radio-button {
border-color: #42a5f5;
background-color: #42a5f5;
box-shadow: 0 0 5px #42a5f5;
}
.custom-radio:hover .radio-button {
border-color: #fff;
}
.custom-radio input:checked:hover + .radio-button {
background-color: #66bb6a;
border-color: #66bb6a;
box-shadow: 0 0 5px #66bb6a;