/* Color Palette Variables */
:root {
  --primary-color: #764ba2;
  --secondary-color: #667eea;
  --accent-color: #00d4ff;
}

/* Glossy navbar */
.glossy-navbar {
  background: linear-gradient(135deg, rgba(0,0,50,0.8), rgba(50,50,150,0.8));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glossy-navbar .nav-link {
  transition: all 0.3s ease;
}

.glossy-navbar .nav-link:hover {
  color: #00d4ff;
  transform: scale(1.05);
}

/* Glossy button */
.glossy-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  transition: all 0.3s ease;
}

.glossy-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.glossy-link{
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  transition: all 0.3s ease;
}

/* Typography using clamp() */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

a {
  text-decoration: none;
}

/* Card Glossy Example (Optional) */
.glossy-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.glossy-card:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

/* Responsive Image */
/*img {*/
/*  max-width: 100%;*/
/*  height: auto;*/
/*  object-fit: cover;*/
/*}*/

/*Pagination styling*/
/* Glossy Pagination Links */
.pagination .page-link {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 50px !important;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
  transition: all 0.3s ease;
  margin: 0 3px;
  text-decoration: none !important;
  display: inline-block;
}

/* Hover effect */
.pagination .page-link:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none !important;
}

/* Active page */
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 56, 162, 0.5);
}

/* Disabled state */
.pagination .page-item.disabled .page-link {
  background: #e0e0e0;
  color: #aaa;
  box-shadow: none;
  pointer-events: none;
}


.action-btn-view {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-family: "Google Sans",Roboto,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  max-width: 100%;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
  will-change: transform,opacity;
  z-index: 0;
}

.action-btn-view:hover {
  background: #F6F9FE;
  color: #174ea6;
}

.action-btn-view:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.action-btn-view:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.action-btn-view:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.action-btn-view:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.action-btn-view:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.action-btn-view:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.action-btn-view:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

table thead th {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease;
}
