.app-container {
  background: linear-gradient(180deg, #f8f9fc 0%, #eef2f7 100%) !important;
  min-height: 100vh;
}
#app {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
#nav {
  padding: 10px;
}
#nav a {
  font-weight: bold;
  color: #2c3e50;
}
#nav a.router-link-exact-active {
  color: #667eea;
}
.app-main {
  min-height: calc(100vh - 64px);
}
.main-content {
  padding: 24px 16px 48px;
  min-height: calc(100vh - 180px);
}
.page-content {
  padding: 24px 16px 48px;
  min-height: calc(100vh - 180px);
}
.dialog-card {
  border-radius: 16px !important;
  overflow: hidden;
}
.dialog-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 20px 24px !important;
}
.dialog-header .v-icon {
  color: white !important;
}
.dialog-header--warning {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.dialog-header--error {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}
.dialog-header--success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
  transform: translateY(10px);
}
@-webkit-keyframes pulse {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.6;
}
}
@keyframes pulse {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.6;
}
}
.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.bas {
  position: absolute;
  bottom: 10px;
}
@media (max-width: 600px) {
.main-content {
    padding-top: 8px;
    padding-bottom: 16px;
}
.dialog-header {
    padding: 16px !important;
    font-size: 1rem !important;
}
}

h3[data-v-469af010] {
  margin: 40px 0 0;
}
ul[data-v-469af010] {
  list-style-type: none;
  padding: 0;
}
li[data-v-469af010] {
  display: inline-block;
  margin: 0 10px;
}
a[data-v-469af010] {
  color: #42b983;
}

.hero-section[data-v-fae5bece] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-section[data-v-fae5bece]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content[data-v-fae5bece] {
  position: relative;
  z-index: 1;
}
.hero-title[data-v-fae5bece] {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}
.hero-title .gradient-text[data-v-fae5bece] {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle[data-v-fae5bece] {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-description[data-v-fae5bece] {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-actions .btn-gradient[data-v-fae5bece] {
  background: white !important;
  color: #667eea !important;
  font-weight: 600;
}
.hero-actions .btn-gradient[data-v-fae5bece]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.hero-image-container[data-v-fae5bece] {
  position: relative;
  display: inline-block;
}
.hero-logo[data-v-fae5bece] {
  width: 280px;
  height: 280px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  -webkit-animation: float-fae5bece 6s ease-in-out infinite;
          animation: float-fae5bece 6s ease-in-out infinite;
}
.hero-glow[data-v-fae5bece] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
@-webkit-keyframes float-fae5bece {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-20px);
}
}
@keyframes float-fae5bece {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-20px);
}
}
.wave-container[data-v-fae5bece] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-container svg[data-v-fae5bece] {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.services-section[data-v-fae5bece] {
  padding: 60px 0;
  background: #f8f9fc;
}
.section-header .section-title[data-v-fae5bece] {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}
.section-header .section-subtitle[data-v-fae5bece] {
  color: #6b7280;
  font-size: 1.1rem;
}
.service-card[data-v-fae5bece] {
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px !important;
}
.service-card[data-v-fae5bece]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15) !important;
}
.service-card:hover .service-icon-wrapper[data-v-fae5bece] {
  transform: scale(1.1);
}
.service-icon-wrapper[data-v-fae5bece] {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}
.service-title[data-v-fae5bece] {
  font-size: 1rem !important;
  font-weight: 600;
  justify-content: center;
}
.service-subtitle[data-v-fae5bece] {
  direction: rtl;
  font-size: 0.85rem;
}
.service-description[data-v-fae5bece] {
  color: #6b7280;
  font-size: 0.9rem;
}
.news-section[data-v-fae5bece] {
  padding: 60px 0;
  background: white;
}
.news-card[data-v-fae5bece] {
  border-radius: 12px !important;
}
.news-title[data-v-fae5bece] {
  font-size: 1rem !important;
  font-weight: 600;
}
.news-content[data-v-fae5bece] {
  color: #4b5563;
  line-height: 1.6;
}
.app-section[data-v-fae5bece] {
  padding: 60px 0;
  background: #f8f9fc;
}
.app-card[data-v-fae5bece] {
  border-radius: 20px !important;
  overflow: hidden;
}
.app-card-header[data-v-fae5bece] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 32px;
  color: white;
}
.app-card-header h3[data-v-fae5bece] {
  margin-top: 12px;
  font-size: 1.5rem;
}
.qr-wrapper[data-v-fae5bece] {
  background: white;
  padding: 16px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 960px) {
.hero-title[data-v-fae5bece] {
    font-size: 2.5rem;
}
.hero-logo[data-v-fae5bece] {
    width: 200px;
    height: 200px;
}
.hero-glow[data-v-fae5bece] {
    width: 240px;
    height: 240px;
}
}
@media (max-width: 600px) {
.hero-section[data-v-fae5bece] {
    padding: 40px 0 100px;
}
.hero-title[data-v-fae5bece] {
    font-size: 2rem;
}
.hero-subtitle[data-v-fae5bece] {
    font-size: 1.1rem;
}
.hero-logo[data-v-fae5bece] {
    width: 150px;
    height: 150px;
    margin-top: 32px;
}
.hero-actions .v-btn[data-v-fae5bece] {
    width: 100%;
    margin-right: 0 !important;
}
}
.header-bar[data-v-29e8c3c6] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.nav-icon[data-v-29e8c3c6] {
  transition: transform 0.3s ease;
}
.nav-icon[data-v-29e8c3c6]:hover {
  transform: scale(1.1);
}
.header-title[data-v-29e8c3c6] {
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.university-chip[data-v-29e8c3c6] {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-weight: 500;
}
.login-btn[data-v-29e8c3c6] {
  transition: all 0.3s ease;
}
.login-btn[data-v-29e8c3c6]:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}
.nav-drawer .drawer-header[data-v-29e8c3c6] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 24px;
  text-align: center;
}
.nav-drawer .drawer-header .v-avatar[data-v-29e8c3c6] {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.nav-drawer .drawer-footer[data-v-29e8c3c6] {
  background: #f5f7fa;
  border-top: 1px solid #e5e7eb;
}
.nav-subheader[data-v-29e8c3c6] {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.nav-item[data-v-29e8c3c6] {
  margin: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-item[data-v-29e8c3c6]:hover {
  background: rgba(102, 126, 234, 0.08);
}
.nav-item .v-list-item__title[data-v-29e8c3c6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.nav-item .nav-item-ar[data-v-29e8c3c6] {
  font-size: 0.75rem;
  color: #9ca3af;
  direction: rtl;
}
.active-item[data-v-29e8c3c6] {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%) !important;
}
.active-item .v-list-item__title[data-v-29e8c3c6] {
  color: #667eea;
  font-weight: 600;
}
.active-item .v-icon[data-v-29e8c3c6] {
  color: #667eea !important;
}
@media (max-width: 600px) {
.university-chip[data-v-29e8c3c6] {
    display: none !important;
}
.header-title[data-v-29e8c3c6] {
    font-size: 1.1rem;
}
}
.footer-container[data-v-6c4d8baa] {
  width: 100%;
}
.footer-card[data-v-6c4d8baa] {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.social-section[data-v-6c4d8baa] {
  background: rgba(0, 0, 0, 0.1);
}
.social-icons[data-v-6c4d8baa] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.social-btn[data-v-6c4d8baa] {
  background: rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: all 0.3s ease !important;
}
.social-btn[data-v-6c4d8baa]:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-3px);
}
.social-btn .v-icon[data-v-6c4d8baa] {
  color: white !important;
}
.legal-section[data-v-6c4d8baa] {
  padding: 16px 0;
}
.legal-alert[data-v-6c4d8baa] {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.legal-alert .text-caption[data-v-6c4d8baa] {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.divider-gradient[data-v-6c4d8baa] {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  border: none !important;
  height: 1px;
}
.copyright-section[data-v-6c4d8baa] {
  background: rgba(0, 0, 0, 0.15);
}
.copyright-text[data-v-6c4d8baa] {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}
.divider-dot[data-v-6c4d8baa] {
  color: rgba(255, 255, 255, 0.4);
}
.version-badge[data-v-6c4d8baa] {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
}
.coded-by[data-v-6c4d8baa] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.coded-by .v-icon[data-v-6c4d8baa] {
  vertical-align: middle;
  -webkit-animation: heartbeat-6c4d8baa 1.5s ease infinite;
          animation: heartbeat-6c4d8baa 1.5s ease infinite;
}
@-webkit-keyframes heartbeat-6c4d8baa {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}
@keyframes heartbeat-6c4d8baa {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}
@media (max-width: 600px) {
.copyright-text[data-v-6c4d8baa] {
    font-size: 0.75rem;
}
.legal-alert .text-caption[data-v-6c4d8baa] {
    font-size: 0.7rem;
}
}

/*
.content {
  position: absolute;
  align-content: center;
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
  
}
*/ 

.math-captcha[data-v-be33415c] {
  width: 100%;
}
.captcha-card[data-v-be33415c] {
  border-radius: 12px !important;
  overflow: hidden;
  border: 2px solid rgba(102, 126, 234, 0.2) !important;
  transition: all 0.3s ease;
}
.captcha-card[data-v-be33415c]:hover {
  border-color: rgba(102, 126, 234, 0.4) !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.captcha-header[data-v-be33415c] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8px 16px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.captcha-question-wrapper[data-v-be33415c] {
  display: flex;
  justify-content: center;
}
.captcha-question[data-v-be33415c] {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: "Courier New", "Monaco", monospace;
}
.captcha-question .question-text[data-v-be33415c] {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  letter-spacing: 2px;
}
.captcha-question .question-equals[data-v-be33415c] {
  font-size: 1.4rem;
  font-weight: 700;
  color: #374151;
}
.captcha-question .question-mark[data-v-be33415c] {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9ca3af;
  -webkit-animation: pulse-be33415c 1.5s ease-in-out infinite;
          animation: pulse-be33415c 1.5s ease-in-out infinite;
}
@-webkit-keyframes pulse-be33415c {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.4;
}
}
@keyframes pulse-be33415c {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.4;
}
}
.captcha-input[data-v-be33415c] {
  max-width: 80px;
}
.captcha-input[data-v-be33415c] .v-input__slot {
  border-radius: 8px !important;
}
.captcha-input[data-v-be33415c] .v-input__slot input {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #667eea;
}
.captcha-input[data-v-be33415c] fieldset {
  border-color: rgba(102, 126, 234, 0.3);
}
.captcha-input[data-v-be33415c] .v-input--is-focused fieldset {
  border-color: #667eea !important;
}
.refresh-btn[data-v-be33415c] {
  transition: all 0.3s ease;
}
.refresh-btn[data-v-be33415c]:hover {
  transform: rotate(180deg);
  background: rgba(102, 126, 234, 0.1);
}
@media (max-width: 600px) {
.captcha-question .question-text[data-v-be33415c],
.captcha-question .question-equals[data-v-be33415c],
.captcha-question .question-mark[data-v-be33415c] {
    font-size: 1.2rem;
}
}

.startup-registration[data-v-37edd83c] {
  padding-top: 20px;
  padding-bottom: 40px;
}
.header-card[data-v-37edd83c] {
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
}
.main-form-card[data-v-37edd83c] {
  border-radius: 16px;
  overflow: hidden;
}
.captcha-card[data-v-37edd83c] {
  background: #fafafa;
  border-color: #e0e0e0 !important;
}

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #5C6BC0 0%, #7E57C2 100%);
  --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --info-gradient: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
  --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
  --shadow-colored: 0 8px 24px rgba(102, 126, 234, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --navbar-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef2f7 100%);
  min-height: 100vh;
}

.v-card {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal) !important;
  overflow: hidden;
}
.v-card:hover {
  box-shadow: var(--shadow-lg) !important;
}
.v-card.elevation-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl) !important;
}

.v-card__title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.v-btn {
  border-radius: var(--radius-sm) !important;
  text-transform: none !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition-normal) !important;
}
.v-btn.v-btn--contained {
  box-shadow: var(--shadow-sm) !important;
}
.v-btn.v-btn--contained:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px);
}
.v-btn.btn-gradient {
  background: var(--primary-gradient) !important;
  color: white !important;
}
.v-btn.btn-gradient:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-colored) !important;
}
.v-btn.btn-success-gradient {
  background: var(--success-gradient) !important;
  color: white !important;
}

.v-text-field .v-input__slot {
  border-radius: var(--radius-sm) !important;
  transition: box-shadow var(--transition-normal) !important;
}
.v-text-field.v-input--is-focused .v-input__slot {
  box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.15) !important;
}

.v-select .v-input__slot {
  border-radius: var(--radius-sm) !important;
}

.v-data-table {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}
.v-data-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.v-data-table thead th {
  color: white !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em;
}
.v-data-table tbody tr {
  transition: background-color var(--transition-fast);
}
.v-data-table tbody tr:hover {
  background-color: rgba(92, 107, 192, 0.05) !important;
}
.v-data-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.v-tabs {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.v-tabs .v-tab {
  text-transform: none !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.v-alert {
  border-radius: var(--radius-md) !important;
}
.v-alert.v-alert--prominent .v-alert__icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.v-dialog {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--shadow-xl) !important;
}

.v-chip {
  font-weight: 500;
}
.v-chip.chip-status--success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
  color: white !important;
}
.v-chip.chip-status--pending {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
  color: white !important;
}
.v-chip.chip-status--error {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
  color: white !important;
}

.v-progress-circular {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.gradient-primary {
  background: var(--primary-gradient) !important;
}

.gradient-secondary {
  background: var(--secondary-gradient) !important;
}

.gradient-success {
  background: var(--success-gradient) !important;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
  box-shadow: var(--shadow-xl) !important;
}

.shadow-colored {
  box-shadow: var(--shadow-colored) !important;
}

.card-glass {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-gradient-header .v-card__title {
  background: var(--primary-gradient);
  color: white;
  margin: -1px -1px 0 -1px;
  padding: 16px 20px;
}
.card-gradient-header .v-card__title .v-icon {
  color: white !important;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity var(--transition-normal);
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.slide-up-enter-active,
.slide-up-leave-active {
  transition: all var(--transition-normal);
}

.slide-up-enter,
.slide-up-leave-to {
  opacity: 0;
  transform: translateY(20px);
}

.scale-enter-active,
.scale-leave-active {
  transition: all var(--transition-normal);
}

.scale-enter,
.scale-leave-to {
  opacity: 0;
  transform: scale(0.95);
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-5%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-5%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce {
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
}

@media (max-width: 600px) {
  .v-card__title {
    font-size: 1.1rem !important;
  }
  .v-data-table {
    font-size: 0.875rem;
  }
}
.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.loading-overlay {
  position: relative;
}
.loading-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state {
  text-align: center;
  padding: var(--spacing-xl);
  color: #6b7280;
}
.empty-state .v-icon {
  font-size: 64px !important;
  color: #d1d5db !important;
  margin-bottom: var(--spacing-md);
}
.empty-state h3 {
  margin-bottom: var(--spacing-sm);
  color: #374151;
}

.form-section {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}
.form-section__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid #667eea;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-badge--new {
  background: #e0f2fe;
  color: #0369a1;
}
.status-badge--pending {
  background: #fef3c7;
  color: #b45309;
}
.status-badge--approved {
  background: #d1fae5;
  color: #047857;
}
.status-badge--rejected {
  background: #fee2e2;
  color: #b91c1c;
}

@media print {
  .v-app-bar,
.v-navigation-drawer,
.v-footer {
    display: none !important;
  }
  .v-card {
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
  }
}
:root {
  --dashboard-sidebar-width: 260px;
  --dashboard-header-height: 75px;
  --dashboard-primary: #667eea;
  --dashboard-secondary: #764ba2;
  --dashboard-bg: #f5f7fa;
}

.dashboard-layout {
  background: var(--dashboard-bg);
  min-height: 100vh;
}

.v-main .v-main__wrap .container.container--fluid {
  padding-left: 12px !important;
  padding-right: 12px !important;
  max-width: 100% !important;
}
.v-main .v-main__wrap .container:not(.container--fluid) {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

#core-navigation-drawer .v-navigation-drawer__content::-webkit-scrollbar {
  width: 6px;
}
#core-navigation-drawer .v-navigation-drawer__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
#core-navigation-drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
#core-navigation-drawer .v-navigation-drawer__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.drawer-header {
  padding: 20px;
  text-align: center;
}
.drawer-header .v-avatar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.drawer-header .drawer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-top: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.drawer-header .drawer-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.drawer-menu-item {
  margin: 4px 12px;
  border-radius: 10px !important;
  transition: all 0.3s ease;
}
.drawer-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}
.drawer-menu-item.v-list-item--active {
  background: rgba(255, 255, 255, 0.2) !important;
}
.drawer-menu-item.v-list-item--active::before {
  opacity: 0 !important;
}
.drawer-menu-item.v-list-item--active .v-list-item__title {
  font-weight: 600;
}
.drawer-menu-item .v-list-item__icon {
  margin-right: 16px;
}
.drawer-menu-item .v-list-item__icon .v-icon {
  transition: transform 0.3s ease;
}
.drawer-menu-item:hover .v-icon {
  transform: scale(1.1);
}

#app-bar {
  background: white !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}
#app-bar .app-bar-btn {
  transition: all 0.3s ease;
}
#app-bar .app-bar-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}
#app-bar .app-bar-btn:hover .v-icon {
  color: var(--dashboard-primary);
}
#app-bar .app-bar-title {
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.02em;
}

.app-bar-menu-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.app-bar-menu-btn .v-icon {
  color: white !important;
}
.app-bar-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

.dashboard-card {
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
}

.dashboard-stat-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dashboard-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--stat-color, var(--dashboard-primary));
}
.dashboard-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.dashboard-stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dashboard-stat-card .stat-icon.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.dashboard-stat-card .stat-icon.success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.dashboard-stat-card .stat-icon.warning {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.dashboard-stat-card .stat-icon.info {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.dashboard-stat-card .stat-icon.error {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}
.dashboard-stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}
.dashboard-stat-card .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}
.dashboard-stat-card .stat-change {
  font-size: 0.8rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dashboard-stat-card .stat-change.positive {
  color: #10b981;
}
.dashboard-stat-card .stat-change.negative {
  color: #ef4444;
}

.welcome-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px !important;
  color: white;
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.welcome-card .welcome-content {
  position: relative;
  z-index: 1;
}
.welcome-card .welcome-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.welcome-card .welcome-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}
.welcome-card .welcome-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0.2;
  font-size: 80px;
}

.dashboard-table {
  border-radius: 16px !important;
  overflow: hidden;
}
.dashboard-table .v-data-table__wrapper {
  border-radius: 0 0 16px 16px;
}
.dashboard-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.dashboard-table thead th {
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px !important;
}
.dashboard-table tbody tr {
  transition: all 0.2s ease;
}
.dashboard-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.05) !important;
}
.dashboard-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}
.dashboard-table tbody tr td {
  padding: 14px 16px !important;
  font-size: 0.9rem;
}

.quick-action-btn {
  border-radius: 12px !important;
  padding: 16px 24px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.3s ease !important;
}
.quick-action-btn:hover {
  transform: translateY(-2px);
}
.quick-action-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.quick-action-btn.primary:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
}
.quick-action-btn.success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}
.quick-action-btn.success:hover {
  box-shadow: 0 8px 24px rgba(17, 153, 142, 0.4) !important;
}

.status-chip {
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
}
.status-chip.nouveau {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
  color: white !important;
}
.status-chip.en-cours {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
  color: white !important;
}
.status-chip.traite {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
}
.status-chip.accepte {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
  color: white !important;
}
.status-chip.rejete {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%) !important;
  color: white !important;
}

.dashboard-dialog {
  border-radius: 20px !important;
}
.dashboard-dialog .dialog-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 24px;
}
.dashboard-dialog .dialog-header .v-icon {
  color: white !important;
}
.dashboard-dialog .dialog-content {
  padding: 24px;
}
.dashboard-dialog .dialog-actions {
  padding: 16px 24px;
  background: #f8f9fc;
}

.info-card {
  border-radius: 16px !important;
  border-left: 4px solid var(--dashboard-primary) !important;
  background: white;
}
.info-card .info-card-title {
  color: var(--dashboard-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card .info-card-content {
  color: #4b5563;
  line-height: 1.7;
}
.info-card .info-card-content p {
  margin-bottom: 12px;
}
.info-card .info-card-content ul, .info-card .info-card-content ol {
  padding-left: 20px;
}
.info-card .info-card-content ul li, .info-card .info-card-content ol li {
  margin-bottom: 8px;
}

.dashboard-empty-state {
  text-align: center;
  padding: 60px 20px;
}
.dashboard-empty-state .empty-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.dashboard-empty-state .empty-icon .v-icon {
  font-size: 48px;
  color: #9ca3af;
}
.dashboard-empty-state .empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.dashboard-empty-state .empty-description {
  color: #6b7280;
  max-width: 400px;
  margin: 0 auto;
}

.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.dashboard-loading .loading-text {
  margin-top: 16px;
  color: #6b7280;
  font-weight: 500;
}

@media (max-width: 960px) {
  .dashboard-stat-card {
    padding: 16px;
  }
  .dashboard-stat-card .stat-value {
    font-size: 1.5rem;
  }
  .dashboard-stat-card .stat-icon {
    width: 48px;
    height: 48px;
  }
  .welcome-card .welcome-title {
    font-size: 1.25rem;
  }
  .welcome-card .welcome-icon {
    font-size: 60px;
  }
}
@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-in {
  -webkit-animation: slideInUp 0.4s ease forwards;
          animation: slideInUp 0.4s ease forwards;
}

.animate-delay-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  opacity: 0;
}

.animate-delay-2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  opacity: 0;
}

.animate-delay-3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  opacity: 0;
}

.animate-delay-4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  opacity: 0;
}

.animate-delay-5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

.animate-delay-6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
}

.dashboard-list-page {
  background: var(--dashboard-bg);
  min-height: 100%;
}
.dashboard-list-page .page-header {
  margin-bottom: 8px;
}
.dashboard-list-page .page-header .page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  display: flex;
  align-items: center;
  margin: 0;
}
.dashboard-list-page .page-header .page-title .v-icon {
  margin-right: 12px;
}
.dashboard-list-page .page-header .page-subtitle {
  color: #718096;
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.filter-card {
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
}
.filter-card .filter-card-title {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}
.filter-card .filter-section .filter-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.filter-card .v-chip-group .v-chip {
  margin: 4px !important;
  font-weight: 500;
  transition: all 0.2s ease;
}
.filter-card .v-chip-group .v-chip.v-chip--active {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.filter-card .v-chip-group .v-chip:hover {
  transform: translateY(-2px);
}
.filter-card .v-radio-group .v-radio {
  margin-bottom: 4px;
}
.filter-card .v-radio-group .v-radio .v-label {
  font-size: 0.9rem;
}
.filter-card .v-text-field--outlined fieldset {
  border-color: rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s ease;
}
.filter-card .v-text-field--outlined:hover fieldset {
  border-color: var(--dashboard-primary);
}
.filter-card .v-text-field--outlined.v-input--is-focused fieldset {
  border-color: var(--dashboard-primary) !important;
  border-width: 2px;
}

.data-table-card {
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
}
.data-table-card .data-table-header {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}
.data-table-card .data-table-header .search-field .v-input__slot {
  background: white !important;
  border-radius: 10px;
}

.v-data-table.elevation-1 {
  box-shadow: none !important;
  border-radius: 0 !important;
}
.v-data-table .v-data-table-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.v-data-table .v-data-table-header th {
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none !important;
  padding: 14px 12px !important;
}
.v-data-table .v-data-table-header th .v-data-table-header__icon {
  color: white !important;
}
.v-data-table .v-data-table-header th:first-child {
  border-radius: 12px 0 0 0;
}
.v-data-table .v-data-table-header th:last-child {
  border-radius: 0 12px 0 0;
}
.v-data-table tbody tr {
  transition: all 0.2s ease;
}
.v-data-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.08) !important;
}
.v-data-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}
.v-data-table tbody tr:nth-child(even):hover {
  background: rgba(102, 126, 234, 0.08) !important;
}
.v-data-table tbody tr td {
  padding: 12px !important;
  font-size: 0.875rem;
  color: #2d3748;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.v-data-table tbody tr td .v-icon {
  transition: all 0.2s ease;
  cursor: pointer;
}
.v-data-table tbody tr td .v-icon:hover {
  transform: scale(1.15);
}
.v-data-table .v-data-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
}
.v-data-table .v-data-footer .v-data-footer__select {
  margin: 0 16px 0 0;
}

.table-action-btn {
  min-width: auto !important;
  padding: 0 8px !important;
  margin: 2px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  transition: all 0.2s ease !important;
}
.table-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.table-action-btn .v-icon {
  font-size: 16px !important;
}

.table-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.table-status.nouveau {
  background: #e0f2fe;
  color: #0369a1;
}
.table-status.attente {
  background: #fef3c7;
  color: #b45309;
}
.table-status.en-cours {
  background: #ede9fe;
  color: #7c3aed;
}
.table-status.traite {
  background: #dbeafe;
  color: #2563eb;
}
.table-status.accepte {
  background: #d1fae5;
  color: #059669;
}
.table-status.rejete {
  background: #fee2e2;
  color: #dc2626;
}
.table-status.authentifie {
  background: #d1fae5;
  color: #047857;
}
.table-status.faux {
  background: #fecaca;
  color: #b91c1c;
}

.v-dialog .v-card {
  border-radius: 16px !important;
  overflow: hidden;
}
.v-dialog .v-card__title.headline {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  padding: 16px 24px;
}
.v-dialog .v-card__text {
  padding: 24px !important;
}
.v-dialog .v-card__text .v-input {
  margin-bottom: 8px;
}
.v-dialog .v-card__actions {
  padding: 12px 24px;
  background: #f8f9fc;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.v-dialog .v-card__actions .v-btn {
  border-radius: 8px !important;
  text-transform: none !important;
  font-weight: 500 !important;
}

.v-text-field--outlined.v-input--is-focused .v-input__slot {
  border-color: var(--dashboard-primary) !important;
}

.v-select--outlined.v-input--is-focused .v-input__slot {
  border-color: var(--dashboard-primary) !important;
}

.v-card {
  border-radius: 12px !important;
}
.v-card .v-card__title {
  font-weight: 600;
}

.v-alert {
  border-radius: 12px !important;
}
.v-alert.v-alert--border-left {
  border-left-width: 4px !important;
}

.v-expansion-panels {
  border-radius: 12px !important;
  overflow: hidden;
}
.v-expansion-panels .v-expansion-panel:first-child {
  border-radius: 12px 12px 0 0;
}
.v-expansion-panels .v-expansion-panel:last-child {
  border-radius: 0 0 12px 12px;
}
.v-expansion-panels .v-expansion-panel:only-child {
  border-radius: 12px;
}
.v-expansion-panels .v-expansion-panel .v-expansion-panel-header {
  font-weight: 500;
  transition: background 0.2s ease;
}
.v-expansion-panels .v-expansion-panel .v-expansion-panel-header:hover {
  background: rgba(102, 126, 234, 0.05);
}
.v-expansion-panels .v-expansion-panel .v-expansion-panel-header.v-expansion-panel-header--active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: var(--dashboard-primary);
}

.v-file-input .v-input__slot {
  border-radius: 10px;
  transition: all 0.2s ease;
}
.v-file-input .v-input__slot:hover {
  background: rgba(102, 126, 234, 0.05);
}
.v-file-input .v-file-input__text {
  font-size: 0.9rem;
}

.v-tabs .v-tabs-slider {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
  height: 3px !important;
  border-radius: 3px 3px 0 0;
}
.v-tabs .v-tab {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.v-tabs .v-tab:hover {
  background: rgba(102, 126, 234, 0.05);
}
.v-tabs .v-tab.v-tab--active {
  color: var(--dashboard-primary) !important;
}

.v-stepper {
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.v-stepper .v-stepper__header {
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.v-stepper .v-stepper__step .v-stepper__step__step {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.v-stepper .v-stepper__step .v-stepper__step__step.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.v-stepper .v-stepper__step .v-stepper__label {
  font-weight: 500;
}
.v-stepper .v-stepper__content {
  padding: 24px;
}

.v-badge__badge {
  font-weight: 600;
  font-size: 0.7rem;
}

.v-tooltip__content {
  background: #1a202c !important;
  border-radius: 8px;
  font-size: 0.8rem;
  padding: 6px 12px;
}

.v-list-group__activator p {
  margin-bottom: 0;
}

.v-alert--material {
  margin-top: 32px;
}
.v-alert--material .v-alert__icon {
  top: -36px;
}
.v-alert--material .v-alert__dismissible {
  align-self: flex-start;
  margin: 0 !important;
  padding: 0 !important;
}
.v-card--material__avatar {
  position: relative;
  top: -64px;
  margin-bottom: -32px;
}
.v-card--material__heading {
  position: relative;
  top: -40px;
  transition: 0.3s ease;
  z-index: 1;
}
.v-card--material-chart p {
  color: #999;
}
.v-card--material-chart .v-card--material__heading {
  max-height: 185px;
}
.v-card--material-chart .v-card--material__heading .ct-label {
  color: inherit;
  opacity: 0.7;
  font-size: 0.975rem;
  font-weight: 100;
}
.v-card--material-chart .v-card--material__heading .ct-grid {
  stroke: rgba(255, 255, 255, 0.2);
}
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-point,
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-line,
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-bar,
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-slice-donut {
  stroke: rgba(255, 255, 255, 0.8);
}
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-slice-pie,
.v-card--material-chart .v-card--material__heading .ct-series-a .ct-area {
  fill: rgba(255, 255, 255, 0.4);
}
.v-snackbar--material {
  margin-top: 32px;
  margin-bottom: 32px;
}
.v-snackbar--material .v-alert--material,
.v-snackbar--material .v-snack__wrapper {
  border-radius: 4px;
}
.v-snackbar--material .v-snack__content {
  overflow: visible;
  padding: 0;
}
.v-card--material-stats {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.v-card--material-stats > div:first-child {
  justify-content: space-between;
}
.v-card--material-stats .v-card {
  border-radius: 4px;
  flex: 0 1 auto;
}
.v-card--material-stats .v-card__text {
  display: inline-block;
  flex: 1 0 calc(100% - 120px);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.v-card--material-stats .v-card__actions {
  flex: 1 0 100%;
}
.v-tabs--pill .v-tab,
.v-tabs--pill .v-tab:before {
  border-radius: 24px;
}
.v-tabs--pill.v-tabs--icons-and-text .v-tab,
.v-tabs--pill.v-tabs--icons-and-text .v-tab:before {
  border-radius: 4px;
}
.v-card--testimony {
  padding-bottom: 72px;
  margin-bottom: 64px;
}
.v-card--testimony .v-avatar {
  position: absolute;
  left: calc(50% - 64px);
  top: calc(100% - 64px);
}
