.stop-class1 {
  stop-color: #800000;
}
.stop-class2 {
  stop-color: #FF8C00;
}
.stop-class3 {
  stop-color: #FFFFE0;
}
.stop-class4 {
  stop-color: #B22222;
}
.stop-class5 {
  stop-color: #800000;
}
  .logo-primary {
            fill: #282828 !important; /* Blue color for logo elements */
        }
        .logo-text {
            fill: #282828 !important; /* Dark gray for text */
        }
          /* Size control classes */
        .logo-sm {
            width: 150px;
            height: auto;
        }
        .logo-md {
            width: 250px;
            height: auto;
        }
        .logo-lg {
            width: 350px;
            height: auto;
        }
       /* Responsive size control */
        @media (max-width: 768px) {
            .logo-responsive {
                width: 100%;
                max-width: 200px;
                height: auto;
            }
        }
        @media (min-width: 769px) {
            .logo-responsive {
                width: 300px;
                height: auto;
            }
        }
        /* Control aspect ratio while keeping responsive */
        .logo-aspect {
            width: 100%;
            height: auto;
            max-width: 300px;
            aspect-ratio: 2 / 1; /* Maintains a 2:1 aspect ratio */
        }
        /* Container styling */
        .logo-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* This adds a 10px gap between images */
    justify-content: center; /* This will center the images within the container */
    margin-bottom: 50px;
}

.image-wrapper {
    position: relative;
    /*border: 1px solid #ccccff;*/
    display: inline-block;
    margin: 5px;
    text-align: center;
}

.image-wrapper img {
    display: block;
    margin-bottom: 5px;
}

.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #3200a6;
    color: white;
    border: none;
    padding: 2px 5px;
    cursor: pointer;
    font-size: 12px;
}

.restart-button {
    background: green;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.placeholder {
    width: 256px;
    height: 256px;
    border: 2px dashed #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d3d3d3;
}

.polling-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #d3d3d3;
}

.clear-storage-button {
    background: #3200a6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.error-box {
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid white;
    margin-bottom: 20px;
    text-align: center;
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.image-wrapper-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

input[type="email"], input[type="password"] {
    background-color: #ccccff;
    color: black;
}


.warnbox {
    display: inline-block; /* Ensures the box is only as wide as needed */
    padding: 10px; /* Adds spacing inside the box */
    border: 3px solid red; /* Red border */
    border-radius: 8px; /* Rounded corners */
    background-color: #cccccc; /* White background */
    color: black; /* Black text */
    text-align: center; /* Centers text inside */
    margin: 0 auto; /* Centers the box itself */
}

.warnbox p {
    margin: 0; /* Remove default margins for better spacing */
}

.warnbox a {
    color: blue; /* Standard hyperlink color */
    text-decoration: underline; /* Underlined for clarity */
}

