@charset "utf-8";
/* CSS Document */
body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eef2f3;
            color: #333;
            line-height: 1.6;
        }

        .header {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            color: white;
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            margin: 0;
            font-size: 32px;
            font-weight: 700;
        }

        .container {
            max-width: 900px;
            margin: 30px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .tabs {
            display: flex;
            border-bottom: 2px solid #e0e0e0;
            background: #f7f9fc;
        }

        .tab {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            color: #555;
            transition: all 0.3s ease;
        }

        .tab.active {
            background: white;
            border-bottom: 3px solid #2575fc;
            color: #2575fc;
            font-weight: 700;
        }

        .tab:hover {
            background: #eef2f3;
        }

        .tab-content {
            display: none;
            padding: 30px;
            animation: fadeIn 0.3s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h1 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }

        .tab-content p, .tab-content ul {
            font-size: 16px;
            margin-bottom: 20px;
            color: #555;
        }

        .tab-content ul {
            list-style: disc;
            padding-left: 20px;
        }

		

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
#demo p .button {
	background-color: #000000;
	padding-top: 12px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	background-image: -webkit-linear-gradient(270deg,rgba(236,100,255,1.00) 0%,rgba(126,148,255,1.00) 21.76%,rgba(131,236,114,1.00) 48.70%,rgba(255,249,107,1.00) 69.95%,rgba(255,170,75,1.00) 81.87%,rgba(255,0,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(236,100,255,1.00) 0%,rgba(126,148,255,1.00) 21.76%,rgba(131,236,114,1.00) 48.70%,rgba(255,249,107,1.00) 69.95%,rgba(255,170,75,1.00) 81.87%,rgba(255,0,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(236,100,255,1.00) 0%,rgba(126,148,255,1.00) 21.76%,rgba(131,236,114,1.00) 48.70%,rgba(255,249,107,1.00) 69.95%,rgba(255,170,75,1.00) 81.87%,rgba(255,0,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(236,100,255,1.00) 0%,rgba(126,148,255,1.00) 21.76%,rgba(131,236,114,1.00) 48.70%,rgba(255,249,107,1.00) 69.95%,rgba(255,170,75,1.00) 81.87%,rgba(255,0,0,1.00) 100%);
	border-radius: 42px;
}
h1 {
	font-size: 1.6em;
}
h2 {
	font-size: 1.2em;
}

pre, code {
    background-color: #f4f4f4; /* Light gray background */
    color: #333;              /* Dark gray text color */
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    overflow-x: auto; /* Scroll horizontally for long lines */
    white-space: pre-wrap; /* Preserve spacing and wrap text */
    line-height: 1.5; /* Improve readability */
}
