/* VPN Servers Table Styles */
.vpn-servers-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.vpn-servers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.vpn-servers-title {
  text-align: center;
  margin-bottom: 40px;
}

.vpn-servers-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.vpn-servers-title p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.vpn-servers-search {
  margin-bottom: 20px;
  position: relative;
}

.vpn-servers-search input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vpn-servers-search input:focus {
  border-color: #0060fe;
  box-shadow: 0 0 0 2px rgba(0, 96, 254, 0.2);
  outline: none;
}

.vpn-servers-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.vpn-servers-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.vpn-servers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.vpn-servers-table th,
.vpn-servers-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.vpn-servers-table th {
  background-color: #f5f7fa;
  font-weight: 600;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 10;
}

.vpn-servers-table tr:last-child td {
  border-bottom: none;
}

.vpn-servers-table tr:hover {
  background-color: #f9fafc;
}

.vpn-servers-table .flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.vpn-servers-table .country-cell {
  display: flex;
  align-items: center;
}

.vpn-servers-table .status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.vpn-servers-table .status-available {
  background-color: #e6f7ee;
  color: #0c9;
}

.vpn-servers-table .status-maintenance {
  background-color: #fff3e0;
  color: #f90;
}

.vpn-servers-table .status-offline {
  background-color: #fee;
  color: #f55;
}

/* Responsive styles */
@media (max-width: 991px) {
  .vpn-servers-title h2 {
    font-size: 28px;
  }
  
  .vpn-servers-table th,
  .vpn-servers-table td {
    padding: 12px 15px;
  }
}

@media (max-width: 767px) {
  .vpn-servers-table {
    display: block;
  }
  
  .vpn-servers-table thead {
    display: none;
  }
  
  .vpn-servers-table tbody,
  .vpn-servers-table tr,
  .vpn-servers-table td {
    display: block;
    width: 100%;
  }
  
  .vpn-servers-table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .vpn-servers-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-align: right;
    border-bottom: 1px solid #eee;
  }
  
  .vpn-servers-table td:last-child {
    border-bottom: none;
  }
  
  .vpn-servers-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
    text-align: left;
  }
  
  .vpn-servers-table .country-cell {
    justify-content: flex-end;
  }
  
  .vpn-servers-table .flag-icon {
    order: 2;
    margin-right: 0;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .vpn-servers-title h2 {
    font-size: 24px;
  }
  
  .vpn-servers-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .vpn-servers-table td::before {
    font-size: 13px;
  }
}