/* ===== Admin Styles ===== */
/* Only applied in admin area */
body.wp-admin {
    /* Events/Invitations List Tables */
    .wp-list-table .column-id {
        width: 5%;
    }

    .wp-list-table .column-actions {
        width: 15%;
    }

    /* Forms */
    .im-form-table {
        width: 100%;
        max-width: 800px;
    }

    .im-form-table th {
        width: 200px;
    }

    .im-form-table input[type="text"],
    .im-form-table input[type="email"],
    .im-form-table input[type="url"],
    .im-form-table textarea,
    .im-form-table select {
        width: 100%;
        max-width: 400px;
    }

    /* Buttons */
    .button-link-delete {
        color: #b32d2e !important;
    }

    /* Notices */
    .wrap .notice {
        margin: 15px 0;
    }
}

/* ===== Frontend Styles ===== */
/* Applied everywhere */
#im-rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #161616;
    border-radius: 5px;
}

.im-form-group {
    margin-bottom: 20px;
}

.im-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
      color: #b6995b;
}

#im-rsvp-form input[type="text"],
#im-rsvp-form input[type="email"],
#im-rsvp-form input[type="tel"],
#im-rsvp-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #3d3d3d !important;
  border-color: rgba(40,35,35,0.49) !important;
  border-radius: 4px !important;
  color: #fff !important;
}

#im-rsvp-form textarea {
    min-height: 120px;
}

#im-rsvp-form button[type="submit"] {
    background: #2271b1;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100% !important;
    background: #b6995b !important;
}

#im-rsvp-form button[type="submit"]:hover {
    background: #135e96;
}

#im-response-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    color: #dbdbdb;
  background: #2a2a2a;
}

#im-response-message.success {
    background: #f0fff0;
    border: 1px solid #46b450;
    color: #1a4e1a;
}

#im-response-message.error {
    background: #fff0f0;
    border: 1px solid #dc3232;
    color: #8c2424;
}

.im-radio-group {
    display: flex;
    gap: 15px;
}

.im-radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}

.w100{
    width: 80% !important;
}

.labelcss{
    font-size: 15px;
  font-weight: 600;
}

.dflex{
    display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0px !important;
}

.formcss{
    background: #dfdfdf;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 10px;
}

.lttiel{
    padding-bottom: 20px;
  font-size: 15px;
}

.mb20p{
    margin-bottom: 20px !important;
}