/* ===============================
   Notification Report Plugin CSS
   =============================== */

/* Report Form Wrapper */
.report-wrapper {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 6px;
    max-width: 600px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Info Message */
.report-wrapper .notice-info {
    background-color: #e6f2ff;
    padding: 12px 15px;
    border-left: 5px solid #3399ff;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Already Reported Warning */
.report-wrapper .notice-warning {
    background-color: #fff8e1;
    padding: 12px 15px;
    border-left: 5px solid #ffc107;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Error Message */
.report-wrapper .notice-error {
    background-color: #fce4e4;
    padding: 12px 15px;
    border-left: 5px solid #e53935;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Success Message */
.report-wrapper .notice-success {
    background-color: #e1f8e6;
    padding: 12px 15px;
    border-left: 5px solid #4CAF50;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Form Elements */
.report-wrapper textarea,
.report-wrapper input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
    box-sizing: border-box;
}

.report-wrapper textarea:focus,
.report-wrapper input[type="text"]:focus {
    border-color: #999;
    outline: none;
}

/* Submit Button */
.report-wrapper .button {
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    margin-right: 10px;
}

.report-wrapper .button-primary {
    background-color: #4CAF50;
    color: white;
    border: none;
}

.report-wrapper .button-primary:hover {
    background-color: #43a047;
}

/* Back Button */
.report-wrapper .button:not(.button-primary) {
    background-color: #eee;
    color: #333;
    border: none;
}

.report-wrapper .button:not(.button-primary):hover {
    background-color: #ddd;
}

/* ===============================
   Floating Toast Message (Success)
   =============================== */

#report-toast-notice {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.5s ease;
}


/* ===============================
   Report Submit Button Styles
   =============================== */

/* Primary Report Button */
.report-wrapper .button.button-primary {
    background-color: #28a745; /* Green */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.report-wrapper .button.button-primary:hover {
    background-color: #218838;
}

/* Secondary/Back Button */
.report-wrapper .button {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.report-wrapper .button:hover {
    background-color: #d5d5d5;
}

/* Optional: Align button group */
.report-wrapper form {
    display: flex;
    flex-direction: column;
}

.report-wrapper form .button-group {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}


a.fn-report-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #b52b3a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}
a.fn-report-btn:hover {
  background: #b52b3a;
}






























.fn-notification-box {
  background: #f9f9f9;
  border-left: 4px solid #1e73be;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.fn-notification-box strong {
  font-weight: bold;
  color: #111;
}

.fn-notification-box small {
  color: #666;
  font-size: 90%;
}

.fn-notification-box .ntc-time {
  float: right;
  font-size: 12px;
  color: #888;
}

.fn-notification-box:hover {
  background: #eef6ff;
}
.fn-notification-list {
    padding: 10px;
}

.fn-notification-item {
    border: 1px solid #ccc;
    padding: 12px 15px;
    margin-bottom: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.fn-notification-item.fn-unseen {
    background: #fffbe6;
    border-left: 4px solid #ffba00;
}

.fn-notification-item.fn-seen {
    opacity: 0.85;
}

.fn-notice-message {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.fn-notice-meta {
    font-size: 13px;
    color: #666;
}
.fn-notice-item {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

.fn-notice-item.fn-unseen {
    background: #fff8e1;
    border-left: 4px solid #f39c12;
    font-weight: bold;
}

.fn-notice-item.fn-seen {
    background: #f5f5f5;
    opacity: 0.85;
}

.fn-notice-icon {
    font-size: 20px;
    margin-right: 10px;
}

.fn-notice-content {
    flex: 1;
}

.fn-notice-message {
    margin-bottom: 5px;
}

.fn-notice-time {
    font-size: 12px;
    color: #666;
}
.nfic_lists:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.nto_content {
    font-size: 15px;
}
.nto_optional {
    font-size: 12px;
    color: #777;
}
.nfic_lists.unseen {
    background-color: #fffde7;
    font-weight: bold;
}




.fn-no-notification {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    color: #333;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

