/* Standard Deviation Calculator Custom Styling */

.apple-glass {
    background: rgba(18, 18, 20, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-input {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f4f4f5;
    transition: all 0.2s ease-in-out;
}

.custom-input:focus {
    border-color: #c084fc;
    outline: none;
    box-shadow: 0 0 14px rgba(192, 132, 252, 0.25);
}

.result-card-glow {
    background: radial-gradient(circle at top right, rgba(192, 132, 252, 0.12), transparent 70%);
}
