input[type="number"] {
            width: calc(100% - 28px);
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: 'Courier New', monospace;
        }
        input[type="number"]:focus {
            outline: none;
            border-color: #007acc;
        }
        .output-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .temp-result {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            padding: 15px;
            position: relative;
            text-align: center;
        }
        .temp-name {
            color: #007acc;
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 16px;
        }
        .temp-value {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 15px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .temp-description {
            color: #666;
            font-size: 12px;
            margin-bottom: 10px;
        }
        .copy-individual {
            background: #007acc;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            transition: background-color 0.3s;
        }
        .copy-individual:hover {
            background: #005a9e;
        }