.inverted {
    filter: invert(1) hue-rotate(180deg);
}
.toggledark{
    padding: 10px 20px;
    font-size: 16px;
    background-color: #555; /* Dark background for contrast */
    color: #fff; /* White text for readability */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor indicates clickable */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}
.creator-badge {
    display: inline-block;
    background-color: #1DA1F2; /* Twitter's brand color */
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.creator-badge:hover {
    background-color: #0d95e8; /* Darker shade for hover effect */
}

/* Reset some basic elements */
body, h1, button, input {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

/* Style the button */
button {
    background-color: #005A9C;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 20px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #003D73;
}

/* Style the input field */
input[type="text"] {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Style the output div */
#pythonOutput {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

#downLeft{
    position: fixed; /* Stick to a fixed position */
    bottom: 20px; /* Distance from the bottom */
    left: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it's above other content */
}

#scrollToTopBtn {
    position: fixed; /* Stick to a fixed position */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it's above other content */
    padding: 10px 20px; /* Padding for size */
    background-color: #1DA1F2; /* Background color */
    color: white; /* Text color */
    border: none; /* No border */
    cursor: pointer; /* Cursor to indicate it's clickable */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    transition: opacity 0.2s ease-out;
}

#scrollToTopBtn:hover {
    opacity: 1; /* Full opacity on hover */
}
/* Add some responsive design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    input[type="text"], button {
        width: 100%;
        padding: 15px;
    }
}
