textarea::placeholder {
    font-style: italic;
    color: #6c757d;
    /* Muted text color */
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 2px rgba(0, 123, 255, 0.5);
    /* Add a subtle blue glow */
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    margin-left: 10px;
}

.toggle-switch input[type="checkbox"] {
    position: absolute;
    width: 40px;
    height: 20px;
    opacity: 0;
    cursor: pointer;
}

.toggle-switch label {
    display: block;
    background: #ccc;
    border-radius: 20px;
    height: 20px;
    width: 40px;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch label:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

.toggle-switch input[type="checkbox"]:checked+label {
    background: #007bff;
}

.toggle-switch input[type="checkbox"]:checked+label:after {
    transform: translateX(20px);
}

.responsebox {
    font-size: 14px;
    font-weight: bold;
    color: #990000;
}