/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 23 2025 | 15:47:07 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

body {
            font-family: Arial, sans-serif;  
        }
      
        select, input {
            width: 90%; 
            height: 50px; 
            margin: 10px 0;
        }
        
        textarea {
            width: 90%; 
            height: 200px; 
            margin: 10px 0;
        }
        
        button {
            margin-top: 10px; 
            padding: 10px;
        }
      
        .output {
            margin-top: 20px; 
            border: 1px solid #ccc; 
            padding: 10px; 
            white-space: pre-wrap; /* To preserve whitespace and formatting */
            width: 90%;
        }
      
        /* Floating window styles */
        .floating-window {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
        }

        /* Floating window button styles */
        .floating-window-button {
            position: relative;
            top: 20px;
            left: 20px;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #58c6d5;
            color: #fff;
            cursor: pointer;
        }

        .floating-window-button:hover {
            background-color: #34c3d3;
        }
      
        .loading-spinner {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            font-weight: bold;
            color: #333;
            animation: spinner 1s linear infinite;
        }

        @keyframes spinner {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

