/* Custom styles */
body {
    font-family: "Inter", sans-serif;
    background-color: #f0f4f8; /* Light background */
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px; /* 幅 */
    height: 24px; /* 高さ */
}

.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: .4s;
    border-radius: 24px; /* 角丸 */
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; /* 丸の高さ */
    width: 16px; /* 丸の幅 */
    left: 4px; /* 左からの位置 */
    bottom: 4px; /* 下からの位置 */
    background-color: white; /* 丸の色 */
    transition: .4s;
    border-radius: 50%; /* 真円 */
}

input:checked + .slider {
    background-color: #4169e1; /* オン時の背景色 */
}

input:focus + .slider {
    box-shadow: 0 0 1px #4169e1;
}

input:checked + .slider:before {
    transform: translateX(16px); /* 右に移動 */
}
