
.event-attendance-overview h2 {
    color: red!important;
    border:1px solid black;
}

.event-attendance-overview ul {
    list-style-type: none;
    padding: 0;
}

.event-attendance-overview li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.event-attendance-overview li:last-child {
    border-bottom: none;
}

.updated {
    margin-top: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #7ad03a;
    padding: 5px;
    box-sizing: border-box;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:focus + .slider {
  box-shadow: 0 0 1px #4CAF50;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/*eventsystem*/

.bp-event-button-present {
    background-color: #4CAF50!important; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for button */
    text-align: center; /* Centered text */
    text-decoration: none; /* No underline */
    display: inline-block; /* Inline-block display */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
}

.bp-event-button-not-present {
    background-color: #f44336; /* Red background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Padding for button */
    text-align: center; /* Centered text */
    text-decoration: none; /* No underline */
    display: inline-block; /* Inline-block display */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
}

.bp-events-list {
    list-style-type: none; /* Removes bullet points from the list */
    padding: 0;
}

.bp-events-list li {
    margin-bottom: 20px; /* Adds space between list items */
    padding: 10px;
    background-color: #f9f9f9; /* Light grey background */
    border: 1px solid #ccc; /* Grey border */
}

.bp-events-list h3 {
    color: #333; /* Dark grey color for the title */
    margin-bottom: 10px; /* Space between the title and buttons */
}

/*evensystem*/