/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* You can add global styles to this file, and also import other style files */
html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* This ensures a proper default styling */
* {
  box-sizing: border-box;
}

/* Card styling */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 230px; /* Ensure consistent card height */
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-header {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 22px;
  font-weight: 600;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Empty state styling */
.empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #6c757d;
  min-height: 150px;
  flex: 1;
  padding: 30px 15px;
}

.empty-state p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.card-body.empty-state {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.5;
  color: #4361ee;
}

/* Button styling */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #4361ee, #3a56d4);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3a56d4, #2a46c4);
}

.btn-danger {
  background: linear-gradient(135deg, #e63946, #d32f3d);
  color: white;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #d32f3d, #c32535);
}

.btn-info {
  background: linear-gradient(135deg, #4cc9f0, #36b7df);
  color: white;
}

.btn-info:hover {
  background: linear-gradient(135deg, #36b7df, #25a6ce);
}

.btn-success {
  background: linear-gradient(135deg, #2ec4b6, #27b0a3);
  color: white;
}

.btn-success:hover {
  background: linear-gradient(135deg, #27b0a3, #1c9b8f);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268, #4e555b);
}

/* Outline buttons */
.btn-outline-primary {
  color: #4361ee;
  border: 1px solid #4361ee;
  background-color: transparent;
  box-shadow: none;
}

.btn-outline-primary:hover {
  background-color: #4361ee;
  color: white;
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

/* Small buttons */
.btn-sm {
  padding: 5px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn-sm fa-icon {
  font-size: 0.8rem;
}

/* Badge styling */
.badge {
  padding: 5px 12px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.85rem;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bg-danger {
  background: linear-gradient(135deg, #e63946, #d32f3d) !important;
  color: white !important;
}

.bg-warning {
  background: linear-gradient(135deg, #f9c74f, #f4b838) !important;
  color: #664d03 !important;
}

.bg-success {
  background: linear-gradient(135deg, #2ec4b6, #27b0a3) !important;
  color: white !important;
}

.bg-primary {
  background: linear-gradient(135deg, #4361ee, #3a56d4) !important;
  color: white !important;
}

/* Container styling */
.container-fluid {
  padding: 20px;
}

/* Table styling */
.table {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

.table th {
  border-top: none;
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
}

.table tr:hover {
  background-color: #f8f9fa;
}

.table td {
  vertical-align: middle;
}

/* Nav tabs styling */
.nav-tabs .nav-link {
  border-radius: 6px 6px 0 0;
  padding: 10px 20px;
  color: #495057;
}

.nav-tabs .nav-link.active {
  font-weight: 600;
  color: #4361ee;
  border-bottom-color: #4361ee;
  border-bottom-width: 2px;
}

/* Text colors */
.text-danger {
  color: #e63946 !important;
}

.text-warning {
  color: #f9c74f !important;
}

.text-success {
  color: #2ec4b6 !important;
}

.text-primary {
  color: #4361ee !important;
}

/* Adding custom animation for loading states */
@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.6;
  }
}
/* Fix for Angular margin class compatibility */
.mr-2 {
  margin-right: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.p-3 {
  padding: 1rem !important;
}

/* Global CSS Variables */
:root {
  --primary: #4361ee;
  --primary-dark: #3046b1;
  --secondary: #6c757d;
  --success: #2ecc71;
  --info: #3498db;
  --warning: #f1c40f;
  --danger: #e74c3c;
  --light: #f8f9fa;
  --dark: #2c3e50;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(135deg, #f5f7ff 0%, #e8ecfd 100%) fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*# sourceMappingURL=styles.css.map*/