.page-layout-wrapper {
    display: flex;
    justify-content: center; /* Content ko center mein rakhega */
    align-items: flex-start;
    gap: 15px;
    max-width: 1500px; /* Width badha di taaki dono side ads aa sakein */
    margin: 0 auto;
    padding: 0 10px;
}

/* --- CATEGORY PAGE CONTAINER --- */
.category-container {
  flex: 0 0 800px;
  margin: 30px 0;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.category-title {
  border-bottom: 3px solid #2c3e50;
  padding-bottom: 10px;
  color: #2c3e50;
  text-transform: capitalize;
  font-size: 32px;
}

.category-list-wrapper {
  margin-top: 20px;
}

.job-item-link {
  display: block; /* Flex use kiya taaki status right mein jaye */
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #008080;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease; /* Smooth transition */
}

.job-item-link:hover {
    cursor: pointer;
    padding-left: 25px; /* Hover par text right slide hoga */
    color: #d32f2f;
}

.job-item-link .bullet {
  color: #333;
  margin-right: 10px;
}

.empty-category-msg {
  padding: 40px;
  text-align: center;
  color: #777;
}

/* Sidebar jo Container ke bahar hai */
.side-ad {
    flex: 0 0 200px; /* Ads thodi patli rakhi hain (Skyscraper size) */
    position: sticky;
    top: 50px;
    margin-top: 30px;
}


.vertical-ad-placeholder {
    height: 600px;
    border: 1px dashed #008080;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ======== RESPONSIVE LOGIC ======== */

/* Jab screen 1300px se kam ho (Dono ads nahi ban payengi) */
@media (max-width: 1300px) {
    .left-ad { display: none !important; } /* Ek ad hide kar do */
}

/* Jab screen 1100px se kam ho (Dono side ads hide) */
@media (max-width: 1100px) {
    .side-ad { display: none !important; } 
    .category-container {
        flex: 1;
        max-width: 95%;
        margin: 15px auto;
    }
}

/* --- PAGINATION STYLING --- */
.pagination-section {
  margin-top: 30px;
  text-align: center;
  padding: 20px;
}

.pag-btn {
  padding: 10px 20px;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 600;
}

.pag-btn:hover {
  background: #ff9933; /* Hover par Orange */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prev-btn {
  margin-right: 10px;
}
.next-btn {
  margin-left: 10px;
}

.pag-info {
  font-weight: bold;
  color: #333;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
/* @media (max-width: 1024px) {
  .category-container {
    margin: 15px !important;
    padding: 15px !important;
  }
} */

@media (max-width: 480px) {
  /* .category-container {
    margin: 10px !important;
    padding: 12px !important;
  } */
  .category-title {
    font-size: 24px !important;
  }
  .job-item-link {
    font-size: 15px;
    padding: 12px 10px;
  }
  .pag-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* badge */
.badgeDate{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Result Tracker Table Styles */
.result-tracker-table {
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid #008080;
    border-radius: 8px;
}

.result-tracker-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 400px;
}

.result-tracker-table thead tr {
    background: #008080;
    color: white;
    text-align: left;
}

.result-tracker-table th {
    padding: 12px;
    border-bottom: 2px solid #006666;
}

.result-tracker-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.result-tracker-table tbody tr:hover {
    background-color: #f5f5f5;
}

.result-tracker-table .section-header {
    background: #e8f4f4;
    font-weight: bold;
    color: #008080;
}

.result-tracker-table .section-header td {
    padding: 8px 12px;
    font-weight: bold;
    color: #008080;
    background: #e8f4f4;
}

.result-tracker-table .confirmed-date {
    color: #d32f2f;
    font-weight: bold;
}

.result-tracker-table .board-name {
    font-weight: bold;
}

/* Zebra striping */
.result-tracker-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.result-tracker-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .result-tracker-table {
        margin: 10px 0;
    }
    
    .result-tracker-table table {
        font-size: 12px;
        min-width: 300px;
    }
    
    .result-tracker-table th,
    .result-tracker-table td {
        padding: 8px;
    }
}