main {
    padding: 2rem;
}

/* Apply a border to the table for visibility */
table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ccc;
}

/* Style table header cells */
th {
    background-color: #f2f2f2;
    padding: 8px;
    text-align: center;
    width: calc(100% / 14);
}

/* Style table body cells */
td {
    padding: 8px;
    text-align: center;
}

/* Apply background color to alternating rows for better readability */
tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Style buttons */
.edit-btn {
    padding: 4px 8px;
    margin-right: 4px;
    cursor: pointer;
    border: none;
    background-color: #366f36ff;
    color: white;
    border-radius: 4px;
    margin-bottom: 2px;
}

.delete-btn {
    padding: 4px 8px;
    margin-right: 4px;
    cursor: pointer;
    border: none;
    background-color: #366f36ff;
    color: white;
    border-radius: 4px;
    margin-top: 2px;
}

/* Style footer */
footer {
    background-color: #f2f2f2;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

/* Style main section */
.main {
    padding: 20px;
}

/* Center align text within header */
header {
    text-align: center;
}

.red-btn {
    background-color: #E2725B;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* CSS for the modal */
.sendSaveTheDateModalClass {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Add scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    padding-top: 60px; /* Space for close button */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 90vh; /* Set max height to the viewport height */
    overflow-y: auto; /* Add vertical scrollbar if needed */
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
/* CSS for the content container */
.content-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc; /* Border around the content */
    padding: 10px;
  }
  
  /* CSS for the individual checkbox wrapper */
  .checkbox-wrapper {
    margin-right: 20px; /* Spacing between checkboxes */
    margin-bottom: 10px; /* Spacing between rows */
  }
  
/* CSS for the guest list */
.guest-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns layout */
    list-style-type: none; /* Remove bullet points from the list */
    padding: 0;
    border: 1px solid #ccc; /* Border around the content */
  }
  
  .guest-list li {
    margin: 5px 10px; /* Spacing between list items */
  }
  
  .guest-list label {
    margin-left: 5px; /* Spacing between checkbox and label */
  }
  
  .guest-image {
    width: 200px; /* Set the desired width for the profile picture */
    height: 200px; /* Set the desired height for the profile picture */
    border-radius: 50%; /* Make the image round */
    border: 2px solid #fff; /* Add a white border for better visibility */
}
