
        body, html {
            min-height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-family: Arial, sans-serif;
            background-image: radial-gradient(circle at 50% 50%, #64a3f6 0%, #291fec 30%, #12028a 70%);
            background-size: cover;

            overflow: auto;
            z-index: -1;
        }

        .center {
            text-align: center;
        }

        .image-slider-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
        }

        canvas {
    border: 7px solid transparent; /* Set solid border to transparent */
    border-radius: 10px;
    background-color: black;
    margin-bottom: 10px;

    /* Create the gradient effect */
    border-image: linear-gradient(to right, rgb(100, 100, 100), lightgray, lightgray, rgb(100, 100, 100)) 1 fill / 7px 7px round;
    }

        .controls {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        label {
            font-size: 16px;
            color: #ffffff;
            font-family: "Trebuchet MS", Arial, sans-serif;
        }

        .slider-container {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .percentage-display {
            color: white;
            font-size: 12px;
            text-align: center;
            margin-top: -1px;
        }

        .file-upload-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .file-upload-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .file-upload-wrapper input[type="file"] {
            display: block;
            margin: 0;
            height: auto;
            color:white;
        }

        /* Force the file input to show its text below */
        .file-upload-wrapper input[type="file"]::file-selector-button {
            display: block;
            margin-bottom: 5px;
        }

        /* Style for webkit browsers */
        .file-upload-wrapper input[type="file"]::-webkit-file-upload-button {
            display: block;
            margin-bottom: 5px;
        }

        button {
            background-color: #0003ba; /* Blue background */
            border-radius: 10px;
            border: 0.3vh solid rgb(255, 255, 255); /* White border */
            color: white; /* White text */
            padding: 10px 20px; /* Add some padding for better appearance */
            font-size: 16px; /* Ensure consistent font size */
            cursor: pointer; /* Change cursor to pointer on hover */
        }

        /* Optional: add a hover effect */
        button:hover {
            background-color: #2743b1; /* Darker blue on hover */
        }

        .center img {
            width: 25%;
            cursor: pointer;
        }

        .message-window {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #969595;
            border: 1px solid #444444;
            border-radius: 15px;
            padding: 20px;
            width: 800px;
            height: 485px;
            z-index: 1000; /* Ensure it's always on top */
        } 

        .message-content {
            margin-bottom: 15px;
        }

        .timer {
            font-weight: bold;
        }

        .close-button {
             position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
        }

        #donate-button {
            display: block;
            margin: 0 auto;
        }

        #paypalContainer {
    display: block; /* Ensure it's visible */
    text-align: center; /* Center the form */
    margin-top: 20px; /* Space above the form */
}

/* Add overlay for blocking interaction */
#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Higher than other elements */
    display: none; /* Hidden by default */
    pointer-events: all; /* Capture clicks */
}

#helpWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #251b95;
    border: 0px solid #ccc;
    padding: 20px;
    z-index: 9999; /* Ensure it's always on top */
    display: none; /* Initially hidden */
  }
  
  /* Adjust the width and height as needed */
  #helpWindow img {
    max-width: 800px;
    max-height: 600px;
  }

  /* Overlay styles */
#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    cursor: not-allowed;
    display: none;
}

/* Popup window styles */
#messageWindow {
    position: fixed;
    z-index: 9999;
    pointer-events: auto;
}

/* Ensure all elements inside popup are clickable */
#messageWindow * {
    pointer-events: auto;
}

/* Interactive elements within popup */
#messageWindow a,
#messageWindow button,
#messageWindow input,
#messageWindow form {
    cursor: pointer;
    position: relative;
    z-index: 10000;
}

/* PayPal form specific styles */
#messageWindow form {
    position: relative;
    z-index: 10000;
    pointer-events: auto;
}

/* Help window styles */
#helpWindow {
    display: none;
}