/* Reset some defaults */
body, h2, p, table {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Logo */
.logo {
  display: block;
  max-width: 180px;
  margin: 0 auto 20px auto;
}

/* Headings */
h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #004080;
  margin-bottom: 20px;
}

/* Table styling */
.app_list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.app_list thead {
  background-color: #004080;
  color: #fff;
}

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

.app_list tbody tr:hover {
  background-color: #f1f5fb;
}

.app_list a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.app_list a:hover {
  text-decoration: underline;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

/* Websites section */
.websites_container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.website_item a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #004080;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.website_item a:hover {
  background-color: #0066cc;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .app_list th, .app_list td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .websites_container {
    flex-direction: column;
  }

  .logo {
    max-width: 140px;
  }
}

/* Search bar container */
.search_div {
  margin-bottom: 20px;
  text-align: right;
}

.search_div input[type="text"] {
  width: 280px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search_div input[type="text"]:focus {
  border-color: #004080;
  box-shadow: 0 0 5px rgba(0,64,128,0.3);
  outline: none;
}

/* Style for the 'No results' row */
.no-results {
  display: none;
  text-align: center;
  font-style: italic;
  color: #666;
  background-color: #f9f9f9;
}
