@font-face {
  font-family: 'Cairo';
  src: url('/public/font/Cairo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Cairo', 'Roboto', sans-serif;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.25rem;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.btn-success {
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-success:hover {
  background-color: #219150;
  border-color: #1f8c4d;
}

.btn-primary {
  background-color: #2980b9;
  border-color: #2980b9;
}

.btn-primary:hover {
  background-color: #2471a3;
  border-color: #21618c;
}

.custom-breadcrumb {
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #dee2e6;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* change default slash to arrow */
  color: #6c757d;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-item.active {
  font-weight: 600;
}


.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1055;
}

.copy-number {
    text-decoration: none;
}
.copy-number:hover {
	text-decoration: underline;
}

.page-link {
  cursor: pointer;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}