#eun-notes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
#eun-notes-table th, #eun-notes-table td {
    border: 1px solid #ccc;
    padding: 8px;
}
.eun-notes-wrapper {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
#eun-note-form {
    margin-top: 10px;
}
#eun-note-form input, #eun-note-form textarea {
    display: block;
    margin: 5px 0;
    width: 100%;
}

/* Add Notes button styling */
#add-note-button, .notes-add-button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#add-note-button:hover, .notes-add-button:hover {
    background: #005bb5;
}

/* Actions buttons at bottom of note cards */
.note-card .note-actions {
    margin-top: 12px;
}
.note-card .note-actions .eun-edit,
.note-card .note-actions .eun-delete {
    margin-right: 8px;
    padding: 6px 12px;
    border: 1px solid #e91e63;
    background: transparent;
    color: #e91e63;
    border-radius: 4px;
    cursor: pointer;
}
.note-card .note-actions .eun-edit:hover,
.note-card .note-actions .eun-delete:hover {
    background: rgba(233,30,99,0.1);
}

/* Pagination fixes: remove bullets, center inline-flex */
.user-notes-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.user-notes-pagination .page-numbers li {
  margin: 0 !important;
}

.user-notes-pagination .page-numbers a,
.user-notes-pagination .page-numbers span {
  display: inline-block !important;
  padding: 5px 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}

.user-notes-pagination .page-numbers .current {
  background-color: #333 !important;
  color: #fff !important;
}


.user-notes-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.user-notes-pagination li {
  display: inline-block;
}
.user-notes-pagination li a {
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.user-notes-pagination {
  display: flex;
  justify-content: center;
}

.user-notes-pagination .page-numbers {
  display: flex !important;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.user-notes-pagination { margin-bottom: 8px; }

.eun-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
#eun-search {
  padding: 6px 10px;
  max-width: 300px;
}


/* Style Load More button like Delete button */
.user-notes-load-more-container {
    text-align: center;
    margin-top: 20px;
}
#user-notes-load-more {
    padding: 8px 16px;
    background: #2b0730;
    border: 1px solid #d5ad3a;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
#user-notes-load-more:hover {
    background: #341338;
}
