body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

  .cursor-follower {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000; /* Change color as needed */
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 9999; /* Ensure it appears above other elements */
  }

        #content-select {
            margin-bottom: 10px;
        }
        #summary {
            margin-top: 20px;
        }

        .profile-info {
            margin-bottom: 10px;
        }

        .container {
            max-width: 600px;
            margin: auto;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
        }
        input[type="text"],
        textarea {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }
        button {
            padding: 10px 15px;
            background-color: #007BFF;
            color: #fff;
            border: none;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
        .output {
            margin-top: 20px;
            padding: 10px;
            background-color: #f8f9fa;
            border: 1px solid #ced4da;
        }


/* autocomplete  */ 
* {
  box-sizing: border-box;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

button {
  background-color: DodgerBlue;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/**/
.clock {
    border: 2px solid blue;     
    position: absolute;
    font-size: 20px;
    color: #000000;
    pointer-events: none; /* Prevents clock from interfering with mouse events */
}

.imageOne {
    background-color: #000000;
    background-image: url('../images/black.png');
    color: #ff0000;
}

.imageTwo {
    background-color: #000000;
    background-image: url('../images/color.png');
    color: #00ff00;
}


