/* ===== Guest Post Status Page ===== */
.gp-status-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: "Segoe UI", Arial, sans-serif;
  }
  
  /* --- Headings --- */
  .gp-status-wrap h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .gp-status-wrap h1 span {
    background: linear-gradient(90deg,   rgb(180, 180, 11), green, blue, indigo,rgb(170, 112, 3), rgb(219, 54, 219));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   
  }
  .gp-status-wrap .intro {
    text-align: center;
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
  }
  .gp-status-wrap .intro strong em {
    color: #e91e63;
    font-style: normal;
    font-weight: bold;
  }
  
  /* --- Messages --- */
  .gp-msg {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 1rem;
    text-align: center;
  }
  .gp-success { background: #e8f9e9; color: #2e7d32; border: 1px solid #c8e6c9; }
  .gp-error   { background: #fdecea; color: #c62828; border: 1px solid #f5c6cb; }
  
  /* --- Form --- */
  .gp-status-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
  }
  .gp-status-form .gp-field {
    margin-bottom: 1rem;
  }
  .gp-status-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  .gp-status-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
  }
  .gp-status-form .gp-submit {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: linear-gradient(90deg, #ff5722, #ff9800, #ffc107, #4caf50, #2196f3, #9c27b0);
    background-size: 400% 400%;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-position 0.5s;
  }
  .gp-status-form .gp-submit:hover {
    background-position: 100% 0;
  }
  
/* --- Results Section --- */
.gp-results {
    background: #f7f7f7;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
  }
  
  .gp-card {
    background: #fff;
    border: 1px solid #e0e0e0;    /* subtle border */
    border-radius: 6px;           /* less rounded */
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.2s;
  }
  .gp-card:hover {
    transform: translateY(-2px);
  }
  .gp-card h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 1px solid #ddd;   /* thin underline */
  }
  
  
  /* --- Status badge --- */
  .status-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 2px solid transparent;   /* bordered look */
    border-radius: 4px;              /* sharper edges */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  
  .status-pending {
    background: #fff3e0;
    color: #ef6c00;
    border-color: #ef6c00;
  }
  .status-approved {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #2e7d32;
  }
  .status-rejected {
    background: #ffebee;
    color: #c62828;
    border-color: #c62828;
  }
  
  
  /* --- Pagination --- */
  .gp-pagination {
    text-align: center;
    margin: 1.5rem 0;
  }
  .gp-pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #eee;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
  }
  .gp-pagination a:hover {
    background: #ddd;
  }
  .gp-pagination a.active {
    background: linear-gradient(90deg, #ff5722, #2196f3);
    color: #fff;
  }
  
  /* --- Portal cards --- */
  .gp-portal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .gp-card-option {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
  }
  .gp-card-option img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .gp-card-option h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  .gp-card-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }
  

  .status-details {
    margin-top: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-left: 3px solid #ccc;
    background: #fafafa;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #444;
  }
  .status-approved + .status-details { border-left-color: #4caf50; }
  .status-rejected + .status-details { border-left-color: #f44336; }
  

  /* --- Filters --- */
.gp-filters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  
  .gp-filter-group span {
    font-weight: 600;
    margin-right: 0.5rem;
    color: #555;
  }
  
  .gp-filter {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    background: #eee;
    color: #333;
    transition: all 0.3s;
  }
  
  .gp-filter:hover {
    background: #ddd;
  }
  
  .gp-filter.active {
    background: linear-gradient(90deg, #ff5722, #2196f3);
    color: #fff;
    font-weight: 600;
  }
  