.cover-logo-licadgis {
  --course-logo: url('../uploads/trainings/default.jpg');
}

.cover-logo-licity {
  --course-logo: url('../images/licity-logo.png');
}

.cover-logo-likas {
  --course-logo: url('../images/likas-logo.png');
}

.cover-logo-limar {
  --course-logo: url('../images/limar-logo.png');
}

.cover-logo-litop {
  --course-logo: url('../images/litop-logo.png');
}

.cover-logo-lites {
  --course-logo: url('../images/lites-logo.png');
}

.course-card .cover.dimmed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: #2a2a2a;
  background: #f7f8fc;
}

.brand-text {
  font-family: 'Playfair Display', Merriweather, Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

h1,
h2,
h3,
.display-4 {
  font-family: 'Playfair Display', Merriweather, Georgia, 'Times New Roman', serif;
  color: #2f2f2f;
  /* neutral headings */
}

h4,
h5,
h6 {
  color: #3a3a3a;
}

.subtitle,
.muted {
  color: #C79A2D;
  /* golden accent */
}

/* Navbar refinements */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-family: 'Playfair Display', Merriweather, serif;
}

.student-navbar .nav-link {
  color: #2c2c2c;
}

.student-navbar .nav-link-underline {
  position: relative;
}

.student-navbar .nav-link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #C79A2D;
  /* subtle gold accent only on hover/active */
  transition: width .2s ease;
}

.student-navbar .nav-link-underline:hover::after,
.student-navbar .nav-link-underline.active::after {
  width: 100%;
}

/* Neutralize primary to dark scheme */
.btn-primary,
.btn-dark {
  background-color: #111;
  border-color: #111;
}

.btn-primary:hover,
.btn-dark:hover {
  background-color: #000;
  border-color: #000;
}

.btn-primary:focus,
.btn-primary:active {
  background-color: #000 !important;
  border-color: #000 !important;
  box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.05) !important;
  /* remove bootstrap blue ring */
}

.btn-outline-primary,
.btn-outline-dark {
  color: #111;
  border-color: #111;
}

.btn-outline-primary:hover,
.btn-outline-dark:hover {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

h1,
h2,
h3,
.display-4 {
  font-family: 'Playfair Display', Merriweather, Georgia, 'Times New Roman', serif;
  color: #0f172a;
  /* Neutral Slate instead of purple */
}

h4,
h5,
h6 {
  color: #0f172a;
}

.subtitle,
.muted {
  color: #b8860b;
  /* golden accent for subtitles */
}

/* Navbar */
.student-navbar .nav-link {
  color: #3a3a3a;
}

.student-navbar .nav-link:hover {
  color: #b8860b;
  /* golden hover */
}

/* Cards */
.edu-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.edu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.edu-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
}

.badge-pill {
  border-radius: 999px;
  padding: .35rem .6rem;
  font-size: .72rem;
  letter-spacing: .02em;
}

.badge-enrolled {
  background: #111;
  color: #fff;
}

.badge-completed {
  background: #198754;
  color: #fff;
}

.badge-new {
  background: #0d6efd;
  color: #fff;
}

.edu-card .card-title {
  color: #2f2f2f;
  margin-bottom: .25rem;
}

.edu-card .btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
}

.edu-card .btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

/* Hero section */
.hero {
  background: #fafafe;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

/* Skeleton placeholders */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

/* Course card (inspiration style) */
.course-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.course-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.course-card .cover {
  height: 140px;
  min-height: 140px;
  width: 100%;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  overflow: hidden;
}

.course-card .cover.cover-custom {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: transparent;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.course-card .cover.cover-custom img.cover-img-custom {
  width: 100%;
  height: 90%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.course-card .cover.cover-custom.dimmed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.course-card .cover span.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cover-photo-licity {
  background-image: url('../images/licity-egitim.png') !important;
  background-position: left center !important;
  /* sol kısım sabit */
  background-repeat: no-repeat !important;
  background-color: #0b1a66;
  background-size: cover !important;
  /* boşluk yok, kırpma serbest */
}

/* Ek eğitim kapak fotoğrafları */
.cover-photo-litop {
  background-image: url('../images/litop-egitim.png') !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-color: #0b1a66;
  background-size: cover !important;
}

.cover-photo-likas {
  background-image: url('../images/likas-egitim.png') !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-color: #0b1a66;
  background-size: cover !important;
}

.cover-photo-default {
  background-image: url('../images/litop-egitim.png') !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  background-color: #0b1a66;
  background-size: cover !important;
}

.course-card.cover-enrolled .cover:not(.cover-custom) {
  background: linear-gradient(135deg, rgba(17, 17, 17, .85), rgba(52, 58, 64, .85));
}

.course-card.cover-completed .cover:not(.cover-custom) {
  background: linear-gradient(135deg, rgba(25, 135, 84, .85), rgba(76, 175, 80, .85));
}

.course-card.cover-new .cover:not(.cover-custom) {
  background: linear-gradient(135deg, rgba(13, 110, 253, .85), rgba(90, 162, 255, .85));
}

.course-card .cover .icon {
  display: none;
}

.course-card .cover .logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
  opacity: .95;
}

.course-card .body {
  padding: 0px 16px 18px;
}

.course-card .title {
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 6px;
  letter-spacing: .1px;
}

.course-card .subtitle {
  font-size: .9rem;
  color: #666;
  margin-bottom: 12px;
}

.course-card .meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #666;
  font-size: .9rem;
}

.course-card .meta i {
  margin-right: 4px;
}

.course-card .badge-tiny {
  font-size: .7rem;
  border-radius: 999px;
  padding: .28rem .6rem;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Utilities for metadata */
.meta {
  font-size: .9rem;
  color: #6b6b6b;
}

/* Next trainings list */
.next-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.next-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.next-item+.next-item {
  margin-top: 0;
}

.next-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.next-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f6f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.next-avatar img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.next-title {
  margin: 0;
  font-weight: 700;
  color: #1e1e1e;
}

.next-sub {
  margin: 0;
  color: #6b6b6b;
  font-size: .9rem;
}

.next-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon-only circular button */
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon.btn-dark {
  background-color: #111;
  border-color: #111;
}

.btn-icon.btn-dark:hover {
  background-color: #000;
  border-color: #000;
  transform: translateX(1px);
}

.btn-icon i {
  font-size: 1rem;
}

/* Primary icon button */
.btn-icon.btn-primary {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  color: #fff;
}

.btn-icon.btn-primary:hover {
  background-color: #094db3;
  border-color: #094db3;
}

/* Outline icon button (for copy) */
.btn-icon-outline {
  border: 1px solid #0b5ed7;
  color: #0b5ed7;
  background: transparent;
}

.btn-icon-outline:hover {
  background: #0b5ed7;
  color: #fff;
}

/* Action group styling */
.next-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.next-actions .btn {
  box-shadow: none;
}

/* Compound CTA: text button + arrow icon as one control */
.cta-group {
  display: flex;
  align-items: center;
}

.btn-cta i {
  transform: translateX(0);
  transition: transform .15s ease;
}

.btn-cta:hover i {
  transform: translateX(2px);
}

.btn-cta {
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-cta:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* Top-right toast for copy feedback */
.toast-copy {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #198754;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 12px 26px rgba(25, 135, 84, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1060;
}

.toast-copy.show {
  opacity: 1;
  transform: translateY(0);
}

/* PDF toast notification */
.toast-pdf {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #0b5ed7;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .9rem;
  box-shadow: 0 12px 26px rgba(11, 94, 215, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1060;
  font-weight: 500;
}

.toast-pdf.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-pdf i {
  margin-right: 8px;
}

/* Color chips for meta info - Landing uyumlu brand renkleri */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .3rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.chip i {
  font-size: .9rem;
}

.chip-blue {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.chip-gray {
  color: #64748b;
  background: rgba(100, 116, 139, 0.12);
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.chip-green {
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* Certificates list – compact horizontal card similar to screenshot */
.cert-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.cert-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cert-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7f9;
  border: 1px solid rgba(0, 0, 0, .08);
  color: #2563eb;
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.cert-thumb.big {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
}

.cert-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cert-logo-circle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: contain;
  vertical-align: middle;
}

.cert-body {
  flex: 1 1 auto;
  min-width: 0;
}

.cert-title {
  font-weight: 700;
  color: #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cert-sub {
  font-size: .9rem;
  color: #6b6b6b;
}

.cert-meta {
  font-size: .85rem;
  color: #6b6b6b;
}

.cert-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-head {
  margin-bottom: 4px;
}

.cert-score {
  font-weight: 800;
  color: #1e1e1e;
}

.cert-score .score-label {
  font-size: .7rem;
  color: #6b6b6b;
  font-weight: 700;
  letter-spacing: .04em;
  margin-left: 4px;
}

.cert-menu {
  color: #6b6b6b;
  text-decoration: none;
  padding: 0 6px;
}

.cert-menu:hover {
  color: #111;
  text-decoration: none;
}

.cert-progress {
  position: relative;
  height: 6px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
  margin: 6px 0 10px;
}

.cert-progress span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #2563eb;
  border-radius: 999px;
}

.cert-progress.full {
  height: 8px;
}

.cert-footer .btn {
  box-shadow: none;
}

.cert-meta-row code.cert-code {
  background: #f6f7f9;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: .2rem .45rem;
  border-radius: 6px;
  font-size: .8rem;
  color: #333;
}

.chip-verify {
  color: #198754;
  background: rgba(25, 135, 84, .12);
  border: 1px solid rgba(25, 135, 84, .25);
}

.cert-actions .btn {
  box-shadow: none;
}

.cert-actions .btn-dark {
  background: #111;
  border-color: #111;
}

.cert-actions .btn-dark:hover {
  background: #000;
  border-color: #000;
}

/* Minimal modern certificate link card */
.card-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.card-link:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  border-color: rgba(0, 0, 0, .14);
  transform: translateY(-1px);
}

.cm-left {
  flex: 0 0 auto;
}

.cm-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: contain;
  background: #f6f7f9;
  border: 1px solid rgba(0, 0, 0, .08);
}

.cm-body {
  flex: 1 1 auto;
  min-width: 0;
}

.cm-title {
  font-weight: 700;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cm-sub {
  color: #6b6b6b;
  font-size: .9rem;
}

.cm-right {
  color: #9a9a9a;
}

/* Rich, modern certificate card */
.cert-pro {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}

.cert-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cert-pro.cp-accent-blue::before {
  background: linear-gradient(90deg, #0b5ed7, #5ec4ff);
}

.cert-pro.cp-accent-orange::before {
  background: linear-gradient(90deg, #ff9800, #ffd180);
}

.cert-pro.cp-accent-indigo::before {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.cp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.cp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f6f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06) inset;
}

.cp-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: .9;
}

.cp-head-text {
  display: flex;
  flex-direction: column;
}

.cp-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-logo-circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: contain;
}

.cp-sub {
  color: #6b6b6b;
  font-size: .95rem;
}

.cp-body {
  margin-top: 14px;
}

.cp-desc {
  color: #4a4a4a;
  line-height: 1.5;
}

.cp-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #444;
}

.cp-meta {
  color: #555;
}

.cp-tags {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cp-chip {
  background: rgba(13, 110, 253, .08);
  color: #0b5ed7;
  border: 1px solid rgba(13, 110, 253, .2);
  padding: .28rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
}

/* Modern Student Header - Landing sayfası ile uyumlu */
.student-navbar-modern {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.student-navbar-modern .nav-link-modern {
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.student-navbar-modern .nav-link-modern:hover {
  color: #0284c7;
}

.student-navbar-modern .nav-link-modern.active {
  color: #0284c7;
}

.student-navbar-modern .nav-link-modern.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  background: #0284c7;
  border-radius: 1px;
}

.student-navbar-modern .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.student-navbar-modern .btn[style*="background-color: #0284c7"]:hover {
  background-color: #0369a1 !important;
  border-color: #0369a1 !important;
}

/* Landing sayfası stili nav-link'ler */
.nav-link-landing {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link-landing:hover {
  color: #0284c7;
}

.nav-link-landing.active {
  color: #0284c7;
}

/* Modern Student Footer - Landing sayfası ile uyumlu */
footer[style*="background-color: #020617"] {
  margin-top: 48px;
}

/* Sosyal medya linkleri hover efektleri */
footer .footer-social-link:hover {
  color: #fff !important;
}

footer .footer-social-instagram:hover {
  background-color: #0284c7 !important;
}

footer .footer-social-linkedin:hover {
  background-color: #0077b5 !important;
}

footer .footer-social-twitter:hover {
  background-color: #1da1f2 !important;
}

footer .footer-social-facebook:hover {
  background-color: #1877f2 !important;
}

/* Footer link hover efektleri */
footer .footer-link-item:hover {
  color: #0ea5e9 !important;
  padding-left: 0.5rem !important;
}

/* Form stilleri */
footer .form-control:focus {
  background-color: #0f172a !important;
  border-color: #0284c7 !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.125rem rgba(2, 132, 199, 0.25) !important;
  outline: none;
}

footer .form-control::placeholder {
  color: #475569;
}

footer .btn[style*="background-color: #0284c7"]:hover {
  background-color: #0369a1 !important;
  border-color: #0369a1 !important;
}

/* Legacy footer (geriye dönük uyumluluk için) */
.student-footer {
  background: #ffffff;
  color: #0f172a;
  margin-top: 32px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.student-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .9rem;
}

.student-footer__text {
  color: #1e1e1e;
  font-weight: 500;
}

.student-layout-content {
  flex: 1 0 auto;
  width: 100%;
}

.cp-chip-soft {
  background: rgba(25, 135, 84, .08);
  color: #198754;
  border-color: rgba(25, 135, 84, .25);
}

.cp-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cp-id {
  color: #6b6b6b;
  font-size: .9rem;
}

/* ============================================
   GLOBAL UI COMPONENTS - Dashboard Style
   Kullanım: Views/Home, Profil sayfaları
   ============================================ */

/* === SECTION HEADER === */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.section-header-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
}

/* Icon Color Variants */
.section-header-icon--blue {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
}

.section-header-icon--amber {
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

.section-header-icon--emerald {
  background: linear-gradient(to bottom right, #10b981, #059669);
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.section-header-icon--slate {
  background: linear-gradient(to bottom right, #475569, #334155);
  box-shadow: 0 4px 6px -1px rgba(71, 85, 105, 0.2);
}

.section-header-icon--rose {
  background: linear-gradient(to bottom right, #f43f5e, #e11d48);
  box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.2);
}

.section-header-icon--cyan {
  background: linear-gradient(to bottom right, #06b6d4, #0891b2);
  box-shadow: 0 4px 6px -1px rgba(6, 182, 212, 0.2);
}

.section-header-text {
  display: flex;
  flex-direction: column;
}

.section-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-header-subtitle {
  font-size: 0.625rem;
  font-weight: 500;
  color: #94a3b8;
  margin: 0;
}

.section-header-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e2e8f0, #cbd5e1, transparent);
}

.section-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-header-btn:hover {
  border-color: #3b82f6;
  color: #2563eb;
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.section-header-btn i {
  font-size: 0.5rem;
  transition: transform 0.2s;
}

.section-header-btn:hover i {
  transform: translateX(2px);
}

/* === CARD STYLES === */
.card-hover {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.card-hover:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #e2e8f0;
}

/* Card with amber hover border */
.card-hover--amber:hover {
  border-color: #fcd34d;
}

/* Card with blue hover border */
.card-hover--blue:hover {
  border-color: #93c5fd;
}

/* === META INFO STYLES === */
.meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.5625rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.meta-item i {
  color: #94a3b8;
}

.meta-item span {
  font-weight: 500;
  color: #64748b;
}

/* === LOGO CARD === */
.logo-card {
  background: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.logo-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.logo-card img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-card:hover img {
  transform: scale(1.1);
}

.logo-card span {
  font-size: 0.625rem;
  font-weight: 700;
  color: #475569;
  transition: color 0.2s;
}

.logo-card:hover span {
  color: #2563eb;
}