    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600&display=swap');

    * {
        background-color: #0a0a0a; /* Dark background */
        font-family: 'Orbitron', monospace; /* Futuristic font */
        color: #39ff14; /* Bright green text */
        padding: 10px;
        font-size: large;
        text-shadow: 0 0 5px rgba(57, 255, 20, 0.7); /* Green glow effect */
    }

    body {
        background: linear-gradient(45deg, #41295a, #2F0743); /* Gradient background */
    }

    h1 {
        font-size: 2em;
        color: #ff4081; /* Pink color for titles */
        text-shadow: 0 0 10px rgba(255, 64, 129, 0.8); /* Pink glow effect */
    }

    button, datalist {
        background-color: #3b3b3b;
        color: #00d4ff; /* Cyan text */
        border: 1px solid #00d4ff;
        text-shadow: 0 0 5px rgba(0, 212, 255, 0.7); /* Cyan glow effect */
        transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover */
    }

    button:hover {
        background-color: #00d4ff; /* Cyan background on hover */
        color: #0a0a0a; /* Dark text on hover */
    }

    input[type=text] {
        color: #f0f0f0; /* Light text */
        font-size: x-large;
        background-color: #222; /* Darker input background */
        border: 1px solid #39ff14; /* Green border */
    }

    #serialResults {
        font-family: monospace;
        white-space: pre;
        height: calc(90vh - 250px);
        width: calc(100% - 20px);
        border-style: solid;
        border-color: #39ff14; /* Green border */
        overflow: scroll;
        background-color: rgba(88, 92, 92, 0.8); /* Semi-transparent background */
        padding: 10px;
        margin: 0px;
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.5); /* Green glow effect */
    }

    #terminal {
            height: 350px;
            background-color: #000;
            border-radius: 5px;
            padding: 10px;
            margin-top: 15px;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #007bff;
            font-weight: bold;
        }
        .action-buttons {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .flash-section {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        #browserWarning {
            display: none;
            margin-bottom: 20px;
        }

        /*
        * {
            background-color: #352e2e;
            font-family: monospace;
            color: rgb(60, 255, 1);
            padding: 0px;
            font-size: large;
        }
    
        button,
        datalist {
            background-color: rgb(85, 85, 85);
        }
    
        input[type=text] {
            color: rgb(179, 255, 179);
            font-size: x-large;
            background-color: rgb(102, 86, 86);
            border: 1px solid;
            border-color: #696 #363 #363 #696;
        }
    
        [type="checkbox"] {
            vertical-align: middle;
        }
    
        #serialResults {
            font-family: monospace;
            white-space: pre;
            height: calc(70vh - 350px);
            width: calc(100% - 20px);
            border-style: solid;
            overflow: scroll;
            background-color: rgb(88, 92, 92);
            padding: 10px;
            margin: 0px;
        }*/
    
