<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Steel Rat Private Messaging - Modern UI */

/* Inbox Table */

.srpm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}
.srpm-table th, .srpm-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
.srpm-table th {
    background: #f4f4f4;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.srpm-table tr:hover {
    background: #f9f9f9;
}
.srpm-table td strong {
    color: #c00;
}
.srpm-inbox-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1em;
}

/* Unread Messages List */
.srpm-unread-list-container {
  margin-bottom: 1.4em;
  background: #fffbe5;
  border: 1.5px solid #ffc107;
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(255,193,7,0.03);
  padding: 18px 20px 14px 20px;
  max-width: 900px;
}
.srpm-unread-title {
  font-size: 1.08em;
  color: #b95a00;
  font-weight: bold;
  margin-bottom: 0.36em;
}
.srpm-unread-list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.srpm-unread-list th, .srpm-unread-list td {
  border: 1px solid #ffe082;
  padding: 8px;
}
.srpm-unread-list th {
  background: #fff3cd;
  color: #b95a00;
}
.srpm-unread-list tr:hover {
  background: #fff8e1;
}
.srpm-unread-row {
  background: #fffde7 !important;
  font-weight: 600;
}
.srpm-unread-row strong {
  color: #c00;
}

/* Sortable Table Arrows and Highlight */
.srpm-sort-arrows {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.94em;
  vertical-align: middle;
}
.srpm-sort-arrow {
  cursor: pointer;
  color: #999;
  margin: 0 1px;
  transition: color 0.15s;
  font-size: 1em;
  user-select: none;
}
.srpm-sort-arrow:hover,
.srpm-sort-arrow.srpm-sort-active-arrow {
  color: #0073aa;
  font-weight: bold;
}
.srpm-sort-active {
  background: #e3f1fb !important;
  color: #0073aa !important;
}
.srpm-sort-direction {
  margin-left: 2px;
  color: #0073aa;
  font-size: 0.88em;
  vertical-align: middle;
  font-style: italic;
}

/* Inline Thread Frame Styles */
#srpm-thread-frame {
    background: #fff;
    border: 1.5px solid #b5c7d6;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 28px 32px 22px 32px;
    max-width: 700px;
    width: 100%;
}
/* Added missing styling for sent-message frame */
#srpm-sent-frame {
    background: #fff;
    border: 1.5px solid #b5c7d6;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 28px 32px 22px 32px;
    max-width: 700px;
    width: 100%;
}

.srpm-thread-frame-inner {
    position: relative;
}

/* Close Button (circle X using image) */
.srpm-thread-frame-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: url('../assets/XClose.png') center center no-repeat;
    background-size: 24px 24px;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.18s;
    border-radius: 50%;
    background-color: transparent;
}
.srpm-thread-frame-close:hover,
.srpm-thread-frame-close:focus {
    opacity: 1;
    background-color: #eee;
}

/* Remove old close button classes */
.srpm-thread-frame-close-top,
.srpm-thread-frame-close-bottom {
    display: none !important;
}

.srpm-thread-frame-inner h2 {
    margin-top: 0;
    margin-bottom: 10px;
}
.srpm-error {
    color: #c00;
    font-weight: bold;
}

/* Thread List (legacy) */
.srpm-thread-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.srpm-thread-list li {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 8px;
  background: #fff;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.srpm-thread-list li strong {
  color: #0073aa;
}
.srpm-thread-list li:hover {
  background: #f9f9fc;
}
.srpm-thread-date {
  font-size: 0.9em;
  color: #888;
  margin-left: 8px;
}

/* Compose &amp; Reply Forms */
.srpm-compose-form,
.srpm-reply-form {
  margin: 18px 0;
  padding: 18px 20px;
  background: #f7f9fb;
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  max-width: 500px;
}
.srpm-compose-form label,
.srpm-reply-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.srpm-compose-form input,
.srpm-reply-form textarea,
.srpm-compose-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  font-size: 1em;
  margin-top: 4px;
  margin-bottom: 12px;
}

/* Thread Messages */
.srpm-thread-messages {
  margin: 20px 0;
  padding: 0;
}
.srpm-message {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0e0e0;
}
.srpm-message-meta {
  font-size: 0.93em;
  color: #555;
  margin-bottom: 4px;
}
.srpm-message-body {
  font-size: 1.08em;
  line-height: 1.5;
  color: #212121;
  word-break: break-word;
}

/* Buttons */
button,
.srpm-compose-form button,
.srpm-reply-form button {
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s;
}
button:hover,
.srpm-compose-form button:hover,
.srpm-reply-form button:hover {
  background: #005f8d;
}

/* Notification Badge */
.srpm-badge {
  display: inline-block;
  background: #dc3232;
  color: #fff;
  border-radius: 50%;
  font-size: 0.9em;
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  line-height: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Autocomplete */
.srpm-autocomplete-suggestions {
  border: 1px solid #cdd1d5;
  border-top: none;
  background: #fff;
  max-height: 160px;
  overflow-y: auto;
  position: absolute;
  z-index: 10000;
  width: 240px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.srpm-autocomplete-suggestions div {
  padding: 8px 14px;
  cursor: pointer;
}
.srpm-autocomplete-suggestions div:hover {
  background: #f4f8fc;
}</pre></body></html>