/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background-color: #195594;
  overflow: hidden;
}

#app {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #195594;
}

#search-bar {
  padding: 12px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  outline: none;
}

/* Swiper Fixes */
.swiper-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.swiper-wrapper {
  height: 100%;
  display: flex;
  transition-property: transform;
}

.swiper-slide {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-right: 5px;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  color: #000;
  font-size: 14px;
}

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

th {
  background-color: #f0f0f0;
  font-weight: 600;
}

tr:hover {
  background-color: #f9f9f9;
}

/* Swiper buttons */
.swiper-button-next, .swiper-button-prev {
    color: #195594;
    top: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

img {
    max-width: 150px;
    position: absolute;
}
#search-bar {
    padding: 12px;
    font-size: 16px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;
    outline: none;
    position: absolute;
    right: 20px;
}
td {
    font-size: 13px !important;
}
.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #195594;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.alpha-btn {
  background-color: #195594;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.alpha-btn:hover {
  background-color: #133d77;
}

.alpha-btn.active {
  background-color: #0f2c4d;
}

