.ticket-table { width: 100%; border-collapse: collapse; }
.ticket-table th, .ticket-table td {
    padding: 10px 12px 4px;
    vertical-align: top;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}
.badge { padding: 4px 8px; border-radius: 4px; color: #fff; }



/* Container styling */
.wst-ticket-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading and button */
.wst-ticket-wrap h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#wst-new-ticket-btn {
   
    font-family: 'Poppins';
    padding: 12px 20px;
    font-size: 16px;
    background: #fff;
    border: 1px solid #143d28;
    color: #143d28;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
}
#wst-new-ticket-btn:hover {
  background: #143d28;
  color: #fff;
}
.wst-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wst-ticket-header-hr {
    margin-top: 20px;
    margin-bottom: 4px;
    border: 0;
    border-top: 1px solid #1A181933;
}
/* Table layout */
.ticket-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0px;
}
.status-inprocess {
    background-color: #EFEFEF;
    color: #545454;
    padding: 6px 8px;
}
.status-success {
    background-color: #DDFFE1;
    color: #00751D;
    padding: 6px 8px;
}

.ticket-table th,
.ticket-table td {
  padding: 16px 12px 4px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: top;
}

/* Header row */
.ticket-table th {
  font-weight: 600;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.ticket-table td a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #1A1819;
    line-height: 100%;
}
.ticket-table td a + div {
  font-size: 12px;
  color: #777;
}

/* Date and Type styling similar to above */
.ticket-table td:nth-child(2)::after,
.ticket-table td:nth-child(3)::after,
.ticket-table td:nth-child(1)::after {
  content: attr(data-label);
  display: block;
  font-size: 12px;
  color: #888;
}
span.headLable {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #1A1819B2;
    display: block;
    margin-top: 7px;
}
/* Badge styles */
.badge {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 500;
}

.status-cancelled {
  background-color: #FFE8E8;
  color: #FF1111;
  padding: 6px 8px;
}
.labelClass {
    display: inline;
}

/* Modal overlay */
#wst-ticket-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  z-index: 9999;
}

/* Modal box */
#wst-ticket-modal form {
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

/* Modal title */
#wst-ticket-modal h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Flex row for Request Type & Date */
.wst-form-row {
  display: flex;
  gap: 20px;
}

/* Shared input/select styles */
#wst-ticket-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

#wst-ticket-form input,
#wst-ticket-form select,
#wst-ticket-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  color: #111;
}

#wst-ticket-form textarea {
  height: 60px;
  resize: none;
}

/* Button aligned to right */
#wst-ticket-form button[type="submit"] {
  align-self: flex-end;
  background-color: #063c27;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
#wst-ticket-form button[type="submit"]:hover {
  background-color: #052b1d;
}

/* Close button (X) */
.wst-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}
.wst-modal-close:hover {
  color: #000;
}

/* Wrapper padding and font */
.account-details {
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #111;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Ticket Heading */
.account-details h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Info Paragraphs */
.account-details p {
  font-size: 15px;
  margin: 8px 0;
  line-height: 1.5;
}
.account-details p strong {
  color: #333;
}

/* Sub-heading */
.account-details h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 30px 0 10px;
}

/* Reply form styling */
.account-details form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Textarea */
.account-details textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  resize: vertical;
  font-family: inherit;
}

/* Submit button */
.account-details button[type="submit"] {
  align-self: flex-start;
  background-color: #063c27;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.account-details button[type="submit"]:hover {
  background-color: #052b1d;
}


.account-details .conversation {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.message {
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 80%;
}
.message.user {
  background: #e2f0ff;
  align-self: flex-end;
}
.message.admin {
  background: #f0f0f0;
  align-self: flex-start;
}

.twitter_wrapper,
.youtube_wrapper,
.linkdin_wrapper,
.google_plus_wrapper,
.snapchat_wrapper,
.pinterest_wrapper {
    display: none !important;
}