.cococure-guestlist-form-wrapper {
  /*  background: #f9f9f9;*/
    border: 1px solid #ddd;
    padding: 20px;
    max-width: 500px;
    margin: 20px 0;
}
.cococure-guestlist-form-wrapper h3,
.cococure-guestlist-form-wrapper h4 {
    margin-top: 0;
}
.cococure-guestlist-form-wrapper .form-row {
    margin-bottom: 15px;
}
.cococure-guestlist-form-wrapper .form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.cococure-guestlist-form-wrapper .form-row input,
.cococure-guestlist-form-wrapper .form-row select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
.cococure-guestlist-form-wrapper .form-submit button {
    background: #333;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

/* Admin Status Styles */
.guestlist-status {
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    display: inline-block;
}
.status-pending { background-color: #f0ad4e; }
.status-approved { background-color: #5cb85c; }
.status-rejected { background-color: #d9534f; }

/* Add this to your existing style.css */

/* Events List Styles */
.cococure-events-list .event-item {

    border: 1px solid #eee;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cococure-events-list .event-item h3,
.cococure-events-list .event-item p {
    margin: 0;
}
.cococure-events-list .event-item button {
    background: #333;
    color: #fff;
    border: 0;
    padding: 10px 15px;
    cursor: pointer;
}

/* Modal Styles */
.guestlist-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.guestlist-modal-content {
    background-color: #000;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: fadeIn 0.3s;
}
.guestlist-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.guestlist-modal-close:hover {
    color: #000;
}
@keyframes fadeIn {
  from {opacity: 0}
  to {opacity: 1}
}

/* Add these new rules to the bottom of assets/style.css */

/* --- Admin Dashboard Enhancements --- */

/* Add a subtle background color to processed rows */
tr.status-approved {
    background-color: #d1ffd1 !important;
}

tr.status-rejected {
    background-color: #ffadad !important;
}

/* Make pending rows stand out slightly more if desired */
tr.status-pending {
    border-left: 3px solid #f0ad4e; 
}

/* Style for the approved details display */
.status-details {
    font-size: 12px;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    margin: 5px 0;
    line-height: 1.4;
}