body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom: 2px solid #333;
}

th {
    background-color: #2c3e50;
    color: white;
}

sticky-header {
    position: sticky;
    top: 0;
    background-color: #2c3e50;
    color: white;
    z-index: 1;
}

tr:hover {
    background-color: #f1f1f1;
    cursor:pointer; 
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

tr[data-id]:hover {
    cursor: pointer;
    background-color: #f0f0f0; /* Optional: highlight row on hover */
}
.tabBtn {
    background: #e0e0e0;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    margin-right: 8px;
    font-size: 1em;
    border-radius: 20px 20px 0 0;
    color: #333;
    transition: background 0.2s, color 0.2s;
    position: relative;
    top: 4px;
}

.tabBtn.active,
.tabBtn:focus {
    background: #4CAF50;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}

.tabContent {
    margin-top: 0;
    background: #fff;
    border-radius: 0 8px 8px 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    border-top: none;
}
nav {
    background: #2c3e50;
    padding: 12px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
nav .nav-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 30px;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
nav a:hover, nav a.active {
    color: #4CAF50;
    text-decoration: underline;
}
    #scoutModal { 
        display:none; 
        position:fixed; 
        top:10%; 
        left:50%; 
        transform:translateX(-50%); 
        background:#fff; 
        border:1px solid #ccc; 
        padding:20px; 
        z-index:1000; 
        width: 600px; /* Add or increase this value */
        max-width: 90vw; /* Optional: responsive max width */
    }
    #scoutModalContent { 
        min-width:400px; /* Increase this value as needed */
    }

.gridview-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0074d933;
  margin-bottom: 2em;
}

.gridview-table th, .gridview-table td {
  padding: 1em;
  text-align: left;
}

.gridview-table th {
  background: #2c3e50;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #005fa3;
  position: sticky;
  top: 0;
  z-index: 1;
}

.gridview-table tr:nth-child(even) {
  background: #f6f6f6;
}

.gridview-table tr:hover {
  background: #e6f2fb;
  transition: background 0.2s;
}

.gridview-table td {
  border-bottom: 1px solid #e0e0e0;
}

.action-btn {
  background: #gray;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5em 1em;
  cursor: pointer;
  margin-right: 0.5em;
  font-size: 1em;
  transition: background 0.2s;
}
.action-btn:hover {
  background: #27ae38;
}