/* Root değişkenlerimiz */
:root {
  /* Ana renk paleti - F8F9FA tonları */
  --color-base: #F8F9FA;
  --color-lighter: #FFFFFF;
  --color-light: #FAFBFC;
  --color-dark: #E9ECEF;
  --color-darker: #DEE2E6;
  
  /* Font ayarları */
  --font-family: 'Inter', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  
  /* Transitions */
  --transition: all 0.2s ease-in-out;
}

/* Base styles */
body {
  font-family: var(--font-family);
  background-color: var(--color-base);
  color: #333;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

/* Section styling */
.section {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-darker);
}

.section:last-child {
  border-bottom: none;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

/* Button styles */
.button-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 6px;
  background-color: var(--color-lighter);
  border: 1px solid var(--color-darker);
  color: #333;
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  min-width: 120px;
}

.btn:hover {
  background-color: var(--color-dark);
}

/* Button variants */
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-darker);
}

.btn-outline:hover {
  background-color: var(--color-lighter);
}

.btn-soft {
  background-color: var(--color-base);
  border: none;
}

.btn-soft:hover {
  background-color: var(--color-dark);
}

.btn-ghost {
  background-color: transparent;
  border: none;
}

.btn-ghost:hover {
  background-color: var(--color-base);
}

/* Button sizes */
.btn-sm {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-sm);
  min-width: 100px;
}

.btn-lg {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
  min-width: 140px;
}

/* Button states */
.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loading {
  position: relative;
  cursor: wait;
}

.btn-success {
  background-color: #D1FAE5;
  border-color: #059669;
  color: #065F46;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.btn-success i {
  font-size: 0.875em;
}

.btn-success:hover {
  background-color: #A7F3D0;
}

.btn-danger {
  background-color: #FEE2E2;
  border-color: #DC2626;
  color: #991B1B;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.btn-danger i {
  font-size: 0.875em;
}

.btn-danger:hover {
  background-color: #FCA5A5;
}

/* Full width button */
.btn-full {
  width: 100%;
}

/* Button showcase styling */
.button-showcase {
  margin-bottom: var(--spacing-xl);
}

.button-showcase h3 {
  margin-bottom: var(--spacing-md);
  color: #666;
  font-size: var(--font-size-base);
}

.button-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
}

/* Hover effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.btn:active::after {
  width: 200%;
  height: 200%;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Form styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.input {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-darker);
  border-radius: 4px;
  background-color: var(--color-lighter);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: var(--transition);
}

.input:focus {
  outline: none;
  border-color: var(--color-dark);
  box-shadow: 0 0 0 2px rgba(222, 226, 230, 0.5);
}

/* Features styling */
.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-dark);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-lighter);
  border: 1px solid var(--color-darker);
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: var(--font-size-lg);
  color: #333;
}

.feature-item p {
  margin: 0;
  font-size: var(--font-size-base);
  color: #555;
  line-height: 1.5;
}

/* Footer styling */
footer {
  text-align: center;
  color: #666;
}

footer i {
  color: #ff4d4d;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .container {
    padding: var(--spacing-md);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
} 

/* Alert styles */
.alerts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.alerts-list h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: #666;
}

/* Base Alert */
.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 6px;
    background-color: #FFFFFF;
    border: 1px solid;
    border-left-width: 4px;
}

.alert i {
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    margin-top: 2px;
}

.alert p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
}

/* Alert Variants */
.alert-success {
    border-color: #D1FAE5;
    border-left-color: #059669;
    background-color: #ECFDF5;
}

.alert-success i {
    color: #059669;
}

.alert-success p {
    color: #065F46;
}

.alert-info {
    border-color: #DBEAFE;
    border-left-color: #3B82F6;
    background-color: #EFF6FF;
}

.alert-info i {
    color: #3B82F6;
}

.alert-info p {
    color: #1E40AF;
}

.alert-warning {
    border-color: #FEF3C7;
    border-left-color: #D97706;
    background-color: #FFFBEB;
}

.alert-warning i {
    color: #D97706;
}

.alert-warning p {
    color: #92400E;
}

.alert-error {
    border-color: #FEE2E2;
    border-left-color: #DC2626;
    background-color: #FEF2F2;
}

.alert-error i {
    color: #DC2626;
}

.alert-error p {
    color: #991B1B;
}

/* Dismissible Alerts */
.alert-dismissible {
    position: relative;
    padding-right: 3rem;
}

.alert-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 0.5rem;
    background: none;
    border: none;
    color: currentColor;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}

/* Modern Alerts with Actions */
.alert-modern {
    flex-direction: row;
    align-items: flex-start;
    padding: var(--spacing-md);
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
}

.alert-modern .alert-content {
    flex: 1;
    padding-right: var(--spacing-lg);
}

.alert-modern .alert-title {
    font-size: 0.938rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 2px;
}

.alert-modern p {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.alert-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-left: auto;
    align-self: center;
}

/* Alert Action Buttons */
.alert-actions .btn {
    padding: 4px 12px;
    font-size: 0.813rem;
    min-width: auto;
    height: 28px;
    border-radius: 4px;
    font-weight: 500;
}

.alert-actions .btn:first-child {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #374151;
}

.alert-actions .btn-ghost {
    background: transparent;
    color: #6B7280;
    border: none;
    padding: 4px 8px;
}

.alert-actions .btn:hover {
    background-color: #F9FAFB;
}

.alert-actions .btn-ghost:hover {
    background: transparent;
    color: #374151;
}

/* Banner Alerts */
.alert-banner {
    border-radius: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background-color: #FFFBEB;
    border-color: #FDE68A;
}

.alert-banner .alert-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.alert-banner .alert-content > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alert-banner .alert-title {
    margin-bottom: 2px;
}

.alert-banner p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

/* Alert Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: slideIn 0.3s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .alert-banner {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }

    .alert-actions {
        flex-direction: column;
    }
}

/* Badge styles */
.badges-list {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* Basic Badges */
.badge {
    background-color: #F3F4F6;
    color: #374151;
    border: 1px solid #E5E7EB;
}

.badge-primary {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #BFDBFE;
}

.badge-success {
    background-color: #ECFDF5;
    color: #065F46;
    border-color: #A7F3D0;
}

.badge-warning {
    background-color: #FFFBEB;
    color: #92400E;
    border-color: #FDE68A;
}

.badge-danger {
    background-color: #FEF2F2;
    color: #991B1B;
    border-color: #FECACA;
}

.badge-info {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #BFDBFE;
}

/* Soft Badges */
.badge-soft {
    background-color: #F3F4F6;
    color: #374151;
    border: none;
}

.badge-soft-primary {
    background-color: #EFF6FF;
    color: #1E40AF;
    border: none;
}

.badge-soft-success {
    background-color: #ECFDF5;
    color: #065F46;
    border: none;
}

.badge-soft-warning {
    background-color: #FFFBEB;
    color: #92400E;
    border: none;
}

.badge-soft-danger {
    background-color: #FEF2F2;
    color: #991B1B;
    border: none;
}

.badge-soft-info {
    background-color: #EFF6FF;
    color: #1E40AF;
    border: none;
}

/* Outline Badges */
.badge-outline {
    background-color: transparent;
    border: 1px solid #E5E7EB;
    color: #374151;
}

.badge-outline-primary {
    background-color: transparent;
    border: 1px solid #3B82F6;
    color: #1E40AF;
}

.badge-outline-success {
    background-color: transparent;
    border: 1px solid #10B981;
    color: #065F46;
}

.badge-outline-warning {
    background-color: transparent;
    border: 1px solid #F59E0B;
    color: #92400E;
}

.badge-outline-danger {
    background-color: transparent;
    border: 1px solid #EF4444;
    color: #991B1B;
}

.badge-outline-info {
    background-color: transparent;
    border: 1px solid #3B82F6;
    color: #1E40AF;
}

/* Dot Badges */
.badge-dot {
    position: relative;
    padding-left: 16px;
    background-color: transparent;
    border: none;
}

.badge-dot::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #374151;
}

.badge-dot.badge-primary::before {
    background-color: #3B82F6;
}

.badge-dot.badge-success::before {
    background-color: #10B981;
}

.badge-dot.badge-warning::before {
    background-color: #F59E0B;
}

.badge-dot.badge-danger::before {
    background-color: #EF4444;
}

.badge-dot.badge-info::before {
    background-color: #3B82F6;
}

/* Badge Group Layout */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
}

.badge-showcase {
    margin-bottom: var(--spacing-lg);
}

.badge-showcase h3 {
    margin-bottom: var(--spacing-sm);
    color: #666;
    font-size: var(--font-size-base);
}

/* Tag styles */
.tags-list {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    background-color: var(--color-lighter);
    border: 1px solid var(--color-darker);
    color: #555;
}

.tag i {
    font-size: var(--font-size-sm);
    color: #666;
} 

/* Progress styles */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.progress-item {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: #555;
}

.progress-bar {
    height: 8px;
    background-color: var(--color-darker);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3B82F6;
    border-radius: 4px;
    transition: width 0.3s ease;
} 

/* Modal Base Styles */
.modal {
    border: none;
    border-radius: 24px;
    padding: 0;
    background-color: #FFFFFF;
    min-width: 320px;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.2s ease-out;
}

.modal::backdrop {
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    animation: backdropFadeIn 0.2s ease-out;
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #F1F5F9;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

/* Modal Close Button */
.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #F8FAFC;
    border-radius: 12px;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: #F1F5F9;
    color: #0F172A;
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 24px;
    color: #475569;
    line-height: 1.6;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    background-color: #F8FAFC;
    border-top: 1px solid #F1F5F9;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

/* Alert Modal */
.modal-alert {
    text-align: center;
    padding: 32px;
}

.modal-alert .modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: #FEE2E2;
    color: #DC2626;
}

.modal-alert .modal-icon.success {
    background-color: #DCFCE7;
    color: #16A34A;
}

.modal-alert h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.modal-alert p {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Form Modal */
.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.875rem;
    color: #0F172A;
    transition: all 0.2s ease;
    background-color: #F8FAFC;
}

.form-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: #FFFFFF;
}

.form-input::placeholder {
    color: #94A3B8;
}

/* Confirmation Modal */
.modal-confirm {
    text-align: center;
    padding: 32px;
}

.modal-confirm .modal-icon.success {
    background-color: #DCFCE7;
    color: #16A34A;
    margin-bottom: 24px;
}

.modal-confirm .btn-full {
    margin-top: 24px;
    padding: 12px 24px;
    font-weight: 500;
    width: 100%;
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .modal {
        margin: 16px;
        width: calc(100% - 32px);
        min-width: 0;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }

    .modal-alert,
    .modal-confirm {
        padding: 24px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 8px;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* Breadcrumb styles */
.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--spacing-sm);
    color: var(--color-darker);
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb .active {
    color: #333;
    font-weight: 500;
}

/* Switch styles */
.switches-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.switch-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.switch-label {
    font-size: var(--font-size-base);
    color: #333;
}

.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    padding-left: 50px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    left: 0;
    height: 24px;
    width: 44px;
    background-color: var(--color-darker);
    border-radius: 34px;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .slider {
    background-color: #3B82F6;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .modal {
        margin: var(--spacing-md);
        width: calc(100% - 2 * var(--spacing-md));
    }
    
    .breadcrumb ul {
        gap: var(--spacing-xs);
    }
    
    .modal-actions {
        flex-direction: column;
    }
} 

/* Accordion Styles */
.accordion {
    background-color: var(--color-lighter);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border-bottom: 1px solid var(--color-darker);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background-color: var(--color-base);
}

.accordion-header i {
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: var(--color-lighter);
    padding: 0 var(--spacing-lg);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: var(--spacing-md) var(--spacing-lg);
}

.accordion-content p {
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .accordion-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .accordion-item.active .accordion-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* Loading indicators styles */
.loaders-container {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.loader-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--color-darker);
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-line {
    width: 100px;
    height: 3px;
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: #3B82F6;
    animation: progress 1s ease-in-out infinite;
}

.dots-loader {
    display: flex;
    gap: 4px;
}

.dots-loader span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-darker);
    animation: dots 1.4s ease-in-out infinite;
}

.dots-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Color Palette styles */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.color-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: var(--color-lighter);
    border-radius: 6px;
    border: 1px solid var(--color-darker);
}

.color-preview {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid var(--color-darker);
}

.color-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.color-name {
    font-weight: 500;
}

.color-hex {
    font-size: var(--font-size-sm);
    color: #666;
    font-family: monospace;
}

/* Typography styles */
.typography-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.type-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-darker);
}

.type-details {
    font-size: var(--font-size-sm);
    color: #666;
    font-family: monospace;
}

.body-text {
    font-size: var(--font-size-base);
    margin: 0;
}

.small-text {
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Grid System styles */
.grid-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.grid-row {
    display: grid;
    gap: var(--spacing-sm);
}

.grid-row:nth-child(1) {
    grid-template-columns: repeat(4, 1fr);
}

.grid-row:nth-child(2) {
    grid-template-columns: repeat(3, 1fr);
}

.grid-row:nth-child(3) {
    grid-template-columns: repeat(2, 1fr);
}

.grid-row:nth-child(4) {
    grid-template-columns: 1fr;
}

.grid-col {
    padding: var(--spacing-md);
    background-color: var(--color-lighter);
    border: 1px solid var(--color-darker);
    border-radius: 4px;
    text-align: center;
    font-size: var(--font-size-sm);
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-row {
        grid-template-columns: 1fr !important;
    }
    
    .type-item {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* Tag base styles */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--color-darker);
    color: #333;
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* Tag variants */
.tag-outline {
    background-color: transparent;
    border: 1px solid var(--color-darker);
}

.tag-soft {
    background-color: var(--color-base);
}

.tag-ghost {
    background-color: transparent;
    color: #666;
}

/* Status tags */
.tag-success {
    background-color: #D1FAE5;
    color: #065F46;
}

.tag-warning {
    background-color: #FEF3C7;
    color: #92400E;
}

.tag-danger {
    background-color: #FEE2E2;
    color: #991B1B;
}

.tag-info {
    background-color: #DBEAFE;
    color: #1E40AF;
}

/* Rounded tags */
.tag-rounded {
    border-radius: 16px;
    padding: 4px 12px;
}

/* Size variants */
.tag-sm {
    font-size: 0.75rem;
    padding: 2px 6px;
}

.tag-lg {
    font-size: 1rem;
    padding: 6px 12px;
}

/* Removable tags */
.tag-removable {
    padding-right: 4px;
}

.tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: none;
    color: currentColor;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    margin-left: 4px;
}

.tag-remove:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Tag groups */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

.tag-showcase {
    margin-bottom: var(--spacing-xl);
}

.tag-showcase h3 {
    margin-bottom: var(--spacing-md);
    color: #666;
    font-size: var(--font-size-base);
}

/* Status tag icons */
.tag i {
    font-size: 0.875em;
}

/* Hover effects */
.tag {
    transition: all 0.2s ease;
}

.tag:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .tag-group {
        gap: var(--spacing-xs);
    }
}

/* Design Badge Styles */
.badge-tech {
    background-color: #EEF2FF;
    color: #4F46E5;
    font-family: 'SF Mono', 'Fira Code', monospace;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8125rem;
    letter-spacing: -0.025em;
}

.badge-tech:hover {
    background-color: #E0E7FF;
    transform: translateY(-1px);
}

.badge-tool {
    background-color: #F5F3FF;
    color: #7C3AED;
    padding: 4px 12px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 0.875rem;
}

.badge-tool:hover {
    background-color: #EDE9FE;
    transform: translateY(-1px);
}

.badge-category {
    background-color: #ECFDF5;
    color: #059669;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #A7F3D0;
}

.badge-category:hover {
    background-color: #D1FAE5;
    transform: translateY(-1px);
}

.badge-skill {
    background-color: #FDF2F8;
    color: #DB2777;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.badge-skill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #DB2777, #EC4899);
}

.badge-skill:hover {
    background-color: #FCE7F3;
    transform: translateY(-1px);
}

/* Badge group spacing */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
}

/* Hover transitions */
.badge-tech,
.badge-tool,
.badge-category,
.badge-skill {
    transition: all 0.2s ease;
    cursor: default;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .badge-group {
        gap: 6px;
    }
    
    .badge-tech,
    .badge-tool,
    .badge-category,
    .badge-skill {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Development Badge Styles */
.badge-dev {
    background-color: #FEF3C7;
    color: #92400E;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.025em;
}

.badge-dev i {
    font-size: 1em;
}

.badge-dev:hover {
    background-color: #FDE68A;
    transform: translateY(-1px);
}

.badge-frontend {
    background-color: #DBEAFE;
    color: #1E40AF;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.025em;
}

.badge-frontend i {
    font-size: 1em;
}

.badge-frontend:hover {
    background-color: #BFDBFE;
    transform: translateY(-1px);
}

/* Updated Design Badge Styles */
.badge-tool {
    background-color: #F5F3FF;
    color: #7C3AED;
    padding: 4px 12px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-tool i {
    font-size: 0.875em;
}

.badge-tool:hover {
    background-color: #EDE9FE;
    transform: translateY(-1px);
}

.badge-category {
    background-color: #ECFDF5;
    color: #059669;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #A7F3D0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-category i {
    font-size: 0.875em;
}

.badge-category:hover {
    background-color: #D1FAE5;
    transform: translateY(-1px);
}

/* Common Badge Styles */
.badge {
    transition: all 0.2s ease;
    cursor: default;
    white-space: nowrap;
}

.badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Badge group spacing */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .badge-group {
        gap: 6px;
    }
    
    .badge-dev,
    .badge-frontend,
    .badge-tool,
    .badge-category {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .badge i {
        font-size: 0.75em;
    }
}

/* Programming Language Badge Variants */
.badge-dev.rust {
    background-color: #FFE4E6;
    color: #BE123C;
}

.badge-dev.go {
    background-color: #E0F2FE;
    color: #0369A1;
}

.badge-dev.nim {
    background-color: #FFF7ED;
    color: #C2410C;
}

.badge-dev.kotlin {
    background-color: #F3E8FF;
    color: #7E22CE;
}

.badge-dev.swift {
    background-color: #FEE2E2;
    color: #B91C1C;
}

/* Backend Badge Styles */
.badge-backend {
    background-color: #F0FDF4;
    color: #166534;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.025em;
    border: 1px solid #BBF7D0;
}

.badge-backend:hover {
    background-color: #DCFCE7;
    transform: translateY(-1px);
}

/* Cloud Badge Styles */
.badge-cloud {
    background-color: #F1F5F9;
    color: #334155;
    padding: 4px 12px;
    border-radius: 8px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.025em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.badge-cloud:hover {
    background-color: #E2E8F0;
    transform: translateY(-1px);
}

/* Database Badge Styles */
.badge-database {
    background-color: #EFF6FF;
    color: #1E40AF;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.025em;
    border: 1px solid #93C5FD;
}

.badge-database:hover {
    background-color: #DBEAFE;
    transform: translateY(-1px);
    border-color: #60A5FA;
}

/* Icon Styles */
.badge i {
    font-size: 1em;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effects */
.badge {
    transition: all 0.2s ease;
}

.badge:hover {
    transform: translateY(-1px);
}

/* Additional Hover Effects */
.badge-cloud:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-database:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 640px) {
    .badge-group {
        gap: 6px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .badge i {
        font-size: 0.875em;
    }
}

/* Badge Group Layout */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
}

.badge-showcase {
    margin-bottom: var(--spacing-xl);
}

.badge-showcase h3 {
    margin-bottom: var(--spacing-md);
    color: #333;
}

/* Tabs Styles */
.tabs {
    background-color: var(--color-lighter);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tabs-header {
    display: flex;
    background-color: var(--color-base);
    border-bottom: 1px solid var(--color-darker);
    padding: 0 var(--spacing-sm);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    background: none;
    color: #666;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #333;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Tab Content */
.tabs-content {
    padding: var(--spacing-lg);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h4 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.tab-panel p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 640px) {
    .tabs-header {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        white-space: nowrap;
    }
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Hover ve Active durumlar */
.checkbox-container:hover input ~ .checkmark {
    border-color: #3B82F6;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #3B82F6;
    border-color: #3B82F6;
}

/* Checkmark ikonu */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Renkli Checkbox'lar */
.checkbox-primary input:checked ~ .checkmark {
    background-color: #3B82F6;
    border-color: #3B82F6;
}

.checkbox-success input:checked ~ .checkmark {
    background-color: #10B981;
    border-color: #10B981;
}

.checkbox-warning input:checked ~ .checkmark {
    background-color: #F59E0B;
    border-color: #F59E0B;
}

.checkbox-danger input:checked ~ .checkmark {
    background-color: #EF4444;
    border-color: #EF4444;
}

/* Yuvarlak Checkbox'lar */
.checkbox-rounded .checkmark {
    border-radius: 50%;
}

/* Custom Radio Button Styles */
.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Hover ve Active durumlar */
.radio-container:hover input ~ .radio-mark {
    border-color: #3B82F6;
}

.radio-container input:checked ~ .radio-mark {
    border-color: #3B82F6;
}

/* Radio işareti */
.radio-mark:after {
    content: '';
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3B82F6;
}

.radio-container input:checked ~ .radio-mark:after {
    display: block;
}

/* Renkli Radio Button'lar */
.radio-primary input:checked ~ .radio-mark {
    border-color: #3B82F6;
}
.radio-primary input:checked ~ .radio-mark:after {
    background: #3B82F6;
}

.radio-success input:checked ~ .radio-mark {
    border-color: #10B981;
}
.radio-success input:checked ~ .radio-mark:after {
    background: #10B981;
}

.radio-warning input:checked ~ .radio-mark {
    border-color: #F59E0B;
}
.radio-warning input:checked ~ .radio-mark:after {
    background: #F59E0B;
}

.radio-danger input:checked ~ .radio-mark {
    border-color: #EF4444;
}
.radio-danger input:checked ~ .radio-mark:after {
    background: #EF4444;
}

/* Card Radio Buttons */
.radio-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card .card-content {
    padding: 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.radio-card input:checked ~ .card-content {
    border-color: #3B82F6;
    background-color: #EFF6FF;
}

.radio-card .card-content i {
    font-size: 2rem;
    color: #3B82F6;
    margin-bottom: 1rem;
}

.radio-card .card-content h4 {
    margin: 0 0 0.5rem;
    color: #1F2937;
}

.radio-card .card-content p {
    margin: 0;
    color: #6B7280;
    font-size: 0.875rem;
}

/* Hover Effects */
.radio-card:hover .card-content {
    border-color: #3B82F6;
}

/* Focus States */
.checkbox-container input:focus ~ .checkmark,
.radio-container input:focus ~ .radio-mark {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Disabled States */
.checkbox-container input:disabled ~ .checkmark,
.radio-container input:disabled ~ .radio-mark {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 640px) {
    .radio-card-group {
        grid-template-columns: 1fr;
    }
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    padding-left: 50px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    left: 0;
    height: 24px;
    width: 44px;
    background-color: var(--color-darker);
    border-radius: 34px;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .slider {
    background-color: #3B82F6;
}

.switch input:checked + .slider:before {
    transform: translateX(20px);
}

/* Custom Select */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-select {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 2px solid var(--color-darker);
    border-radius: 6px;
    background-color: var(--color-lighter);
    appearance: none;
    cursor: pointer;
}

/* Range Slider */
.range-wrapper {
    position: relative;
    padding: 10px 0;
}

.range-slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--color-darker);
    border-radius: 2px;
    outline: none;
}

/* Webkit (Chrome, Safari, Edge) için thumb */
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #3B82F6;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease;
}

/* Firefox için thumb */
.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #3B82F6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease;
}

/* IE için thumb */
.range-slider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #3B82F6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-value {
    position: absolute;
    top: -30px;
    right: 0;
    background: #3B82F6;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

/* File Upload */
.file-upload {
    display: block;
    position: relative;
    cursor: pointer;
}

.file-input {
    position: absolute;
    left: -9999px;
}

.file-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #3B82F6;
    color: white;
    border-radius: 6px;
}

.file-name {
    margin-left: 12px;
    color: #666;
}

/* Date Picker */
.date-picker {
    padding: 8px 12px;
    border: 2px solid var(--color-darker);
    border-radius: 6px;
    background-color: var(--color-lighter);
}

/* Form Group */
.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-group h3 {
    margin-bottom: var(--spacing-md);
    color: #333;
}

/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Toast Notification */
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    margin: 10px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-in-out;
    cursor: pointer;
}

/* Toast Variants */
.toast-success {
    background-color: #DEF7EC;
    color: #03543F;
    border-left: 4px solid #0F766E;
}

.toast-error {
    background-color: #FDE8E8;
    color: #9B1C1C;
    border-left: 4px solid #DC2626;
}

.toast-warning {
    background-color: #FEF3C7;
    color: #92400E;
    border-left: 4px solid #D97706;
}

.toast-info {
    background-color: #E1EFFE;
    color: #1E429F;
    border-left: 4px solid #3B82F6;
}

/* Toast Icons */
.toast i {
    font-size: 1.25rem;
}

/* Toast Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-leaving {
    animation: slideOut 0.3s ease-in-out forwards;
}

/* Modern Table */
.table-container {
    overflow-x: auto;
    background: var(--color-lighter);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.modern-table th,
.modern-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-darker);
}

.modern-table th {
    background-color: var(--color-base);
    font-weight: 600;
    color: #333;
}

.modern-table tr:hover {
    background-color: var(--color-base);
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    background-color: var(--color-darker);
}

.status-badge.active {
    background-color: #DEF7EC;
    color: #03543F;
}

/* Modern List */
.modern-list {
    list-style: none;
    padding: 0;
    background: var(--color-lighter);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-darker);
    transition: background-color 0.2s;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background-color: var(--color-base);
}

.list-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-action {
    color: #3B82F6;
    cursor: pointer;
}

/* Tree View */
.tree-view {
    background: var(--color-lighter);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tree-item {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.tree-item i {
    margin-right: 8px;
    color: #666;
}

.tree-children {
    margin-left: 16px;
    border-left: 1px solid var(--color-darker);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--color-darker);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
}

.timeline-dot {
    position: absolute;
    left: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3B82F6;
    border: 2px solid var(--color-lighter);
}

.timeline-content {
    background: var(--color-lighter);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.timeline-date {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 8px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stats-card {
    background: var(--color-lighter);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #EFF6FF;
    color: #3B82F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stats-info h4 {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.stats-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 4px 0;
}

.stats-change {
    font-size: 0.875rem;
}

.stats-change.positive {
    color: #059669;
}

.stats-change.negative {
    color: #DC2626;
}

/* Display Group */
.display-group {
    margin-bottom: var(--spacing-xl);
}

.display-group h3 {
    margin-bottom: var(--spacing-md);
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        padding: 12px;
    }
}

/* Card Base Styles */
.card {
    background: var(--color-lighter);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* Basic Card */
.basic-card {
    padding: 24px;
}

.basic-card h4 {
    margin-bottom: 12px;
    color: #333;
}

.basic-card p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.6;
}

/* Image Card */
.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card .card-content {
    padding: 20px;
}

/* Product Card */
.product-card {
    position: relative;
    max-width: 300px;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #3B82F6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-rating {
    color: #F59E0B;
    margin: 8px 0;
}

.product-price {
    margin: 12px 0;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Profile Card */
.profile-card {
    max-width: 340px;
    overflow: hidden;
}

.profile-cover {
    height: 100px;
    background: linear-gradient(45deg, #3B82F6, #60A5FA);
}

.profile-avatar {
    margin-top: -50px;
    padding: 0 24px;
}

.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
}

.profile-info {
    padding: 24px;
    text-align: center;
}

.profile-title {
    color: #666;
    margin-bottom: 16px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.stat-value {
    display: block;
    font-weight: 600;
    color: #333;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Dashboard Card */
.dashboard-card {
    padding: 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-select {
    padding: 4px 8px;
    border: 1px solid var(--color-darker);
    border-radius: 4px;
}

.dashboard-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.stat-item {
    flex: 1;
}

.stat-item i {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.stat-item i.fa-arrow-up {
    color: #059669;
}

.stat-item i.fa-arrow-down {
    color: #DC2626;
}

.chart-placeholder {
    height: 200px;
    background: var(--color-base);
    border-radius: 8px;
}

/* Pricing Card */
.pricing-card {
    padding: 32px;
    text-align: center;
    max-width: 340px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-amount {
    margin: 16px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 600;
}

.period {
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
}

.pricing-features i {
    color: #059669;
    margin-right: 8px;
}

/* Cards Showcase Container */
.cards-showcase {
    margin-bottom: var(--spacing-xl);
}

.cards-showcase h3 {
    margin-bottom: var(--spacing-md);
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* Copy to Clipboard Styles */
.copy-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--color-lighter);
    border: 1px solid var(--color-darker);
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.copy-wrapperr {
    display: flex;
    align-items: center;
    background-color: var(--color-lighter);
    border: 1px solid var(--color-darker);
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
}

.copy-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: #333;
    outline: none;
}

.copy-btn {
    padding: 12px 16px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: #333;
    background-color: var(--color-base);
}

.copy-btn.copied {
    color: #059669;
}

.copy-btn.copied i::before {
    content: '\f00c'; /* Font Awesome check icon */
}

/* Code Block Styles */
.code-block {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.code-block pre {
    margin: 0;
    padding-right: 40px;
}

.code-block code {
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    padding: 8px;
}

.code-copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Secure Input Styles */
.copy-wrapper.secure .copy-input {
    font-family: monospace;
    letter-spacing: 1px;
}

/* Toast for Copy Feedback */
.copy-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Icon Only Style */
.social-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

/* Rounded Style */
.social-btn-rounded {
    border-radius: 50px;
    padding: 8px 20px;
}

/* Facebook */
.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.facebook:hover {
    background-color: #0d6ae4;
}

/* Twitter */
.social-btn.twitter {
    background-color: #1DA1F2;
}

.social-btn.twitter:hover {
    background-color: #0c85d0;
}

/* Instagram */
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    opacity: 0.9;
}

/* LinkedIn */
.social-btn.linkedin {
    background-color: #0A66C2;
}

.social-btn.linkedin:hover {
    background-color: #084d93;
}

/* GitHub */
.social-btn.github {
    background-color: #24292F;
}

.social-btn.github:hover {
    background-color: #1a1e23;
}

/* Hover Effects */
.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
    .social-buttons {
        gap: 8px;
    }
    
    .social-btn {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    .social-btn-icon {
        width: 36px;
        height: 36px;
    }
}

/* Focus States */
.social-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

/* Disabled State */
.social-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Outlined Alerts */
.alert-outline {
    background-color: transparent;
    border-width: 1px;
    border-left-width: 4px;
}

.alert-outline.alert-success {
    background-color: transparent;
    border-color: #059669;
    border-left-color: #059669;
}

.alert-outline.alert-success i {
    color: #059669;
}

.alert-outline.alert-success p {
    color: #065F46;
}

.alert-outline.alert-info {
    background-color: transparent;
    border-color: #3B82F6;
    border-left-color: #3B82F6;
}

.alert-outline.alert-info i {
    color: #3B82F6;
}

.alert-outline.alert-info p {
    color: #1E40AF;
}

.alert-outline.alert-warning {
    background-color: transparent;
    border-color: #D97706;
    border-left-color: #D97706;
}

.alert-outline.alert-warning i {
    color: #D97706;
}

.alert-outline.alert-warning p {
    color: #92400E;
}

.alert-outline.alert-error {
    background-color: transparent;
    border-color: #DC2626;
    border-left-color: #DC2626;
}

.alert-outline.alert-error i {
    color: #DC2626;
}

.alert-outline.alert-error p {
    color: #991B1B;
}

/* Rich Content Alert */
.alert-rich {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
}

.alert-rich .alert-icon {
    width: 48px;
    height: 48px;
    background-color: #3B82F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-rich .alert-icon i {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.alert-rich .alert-content {
    flex: 1;
}

.alert-rich .alert-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1E40AF;
    margin-bottom: 4px;
}

.alert-rich p {
    color: #3B82F6;
    font-size: 0.938rem;
    margin-bottom: 12px;
}

.alert-rich .highlight {
    font-weight: 600;
    color: #1E40AF;
}

.alert-rich .code-block {
    background-color: #FFFFFF;
    border: 1px dashed #93C5FD;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #3B82F6;
}

.alert-rich .promo-code {
    font-family: monospace;
    font-weight: 600;
    color: #1E40AF;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

.alert-rich .alert-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.alert-rich .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    color: #6B7280;
}

.alert-rich .meta-item i {
    font-size: 0.875rem;
    color: #3B82F6;
}

/* Hover effect for promo code */
.alert-rich .code-block:hover {
    background-color: #F8FAFC;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .alert-rich {
        flex-direction: row;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .alert-rich .alert-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Status Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
}

/* Temel Status Renkleri */
.status-dot.active {
    background-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.status-dot.inactive {
    background-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.status-dot.pending {
    background-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Yeni Status Renkleri */
.status-dot.processing {
    background-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot.completed {
    background-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.status-dot.blocked {
    background-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.status-dot.reviewing {
    background-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-dot.draft {
    background-color: #6B7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2);
}

.status-dot.scheduled {
    background-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.status-dot.archived {
    background-color: #78716C;
    box-shadow: 0 0 0 3px rgba(120, 113, 108, 0.2);
}

/* Hover Efekti */
.badge-status:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Pulse Animasyonu */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .badge-status {
        padding: 3px 8px;
        font-size: 0.75rem;
    }
    
    .status-dot {
        width: 5px;
        height: 5px;
    }
}

/* Icon Badge Base */
.badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;  /* Diğer badge'lerle aynı padding */
    border-radius: 4px; /* Diğer badge'lerle aynı border-radius */
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.badge-icon i {
    font-size: 0.875rem; /* İkon boyutu küçültüldü */
}

/* Success Badge */
.badge-icon.badge-success {
    background-color: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* Primary Badge */
.badge-icon.badge-primary {
    background-color: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

/* Warning Badge */
.badge-icon.badge-warning {
    background-color: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}

/* Info Badge */
.badge-icon.badge-info {
    background-color: #F0F9FF;
    color: #075985;
    border: 1px solid #BAE6FD;
}

/* Danger Badge */
.badge-icon.badge-danger {
    background-color: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Hover Effects */
.badge-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 640px) {
    .badge-icon {
        padding: 2px 6px;
        font-size: 0.75rem;
    }
    
    .badge-icon i {
        font-size: 0.75rem;
    }
}

/* Icon Badge Animations */
/* Sync ve Loading için dönme animasyonu */
.badge-icon i.fa-sync,
.badge-icon i.fa-circle-notch {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Live için yanıp sönme animasyonu */
.badge-icon.blink {
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Hover Effects */
.badge-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Gradient Badges */
.badge[class*="badge-gradient-"] {
    color: white;
    border: none;
    font-weight: 500;
    padding: 4px 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Mevcut Gradient'ler - İyileştirilmiş */
.badge-gradient-blue {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.badge-gradient-purple {
    background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
}

.badge-gradient-gold {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}

.badge-gradient-green {
    background: linear-gradient(135deg, #34D399 0%, #059669 100%);
}

/* Yeni Gradient'ler */
.badge-gradient-sunset {
    background: linear-gradient(135deg, #F87171 0%, #DB2777 100%);
}

.badge-gradient-ocean {
    background: linear-gradient(135deg, #38BDF8 0%, #2563EB 100%);
}

.badge-gradient-fire {
    background: linear-gradient(135deg, #FB923C 0%, #DC2626 100%);
}

.badge-gradient-forest {
    background: linear-gradient(135deg, #4ADE80 0%, #15803D 100%);
}

.badge-gradient-night {
    background: linear-gradient(135deg, #818CF8 0%, #312E81 100%);
}

.badge-gradient-candy {
    background: linear-gradient(135deg, #F472B6 0%, #9333EA 100%);
}

/* Hover Efektleri */
.badge[class*="badge-gradient-"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Shine Efekti */
.badge[class*="badge-gradient-"]::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.badge[class*="badge-gradient-"]:hover::after {
    opacity: 1;
    left: 100%;
}

/* Responsive */
@media (max-width: 640px) {
    .badge[class*="badge-gradient-"] {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
}

/* Progress Bar Styles */
.progress-showcase {
    margin-bottom: var(--spacing-lg);
}

.progress-showcase h3 {
    margin-bottom: var(--spacing-md);
    color: #666;
}

.progress-item {
    margin-bottom: var(--spacing-md);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: #555;
}

/* Base Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3B82F6;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Animated Progress */
.progress-animated {
    position: relative;
    overflow: hidden;
}

.progress-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

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

/* Striped Progress */
.progress-striped {
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    0% { background-position: 0 0; }
    100% { background-position: 1rem 0; }
}

/* Colored Variants */
.progress-success {
    background-color: #10B981;
}

.progress-warning {
    background-color: #F59E0B;
}

.progress-error {
    background-color: #EF4444;
}

/* Size Variants */
.progress-sm {
    height: 4px;
}

.progress-lg {
    height: 12px;
}

/* Gradient Progress */
.progress-gradient {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
}

/* Hover Effects */
.progress-bar:hover .progress-fill {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 640px) {
    .progress-label {
        font-size: 0.75rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .progress-lg {
        height: 10px;
    }
}

/* Modern Progress Bar Styles */

/* Rounded Progress */
.progress-rounded {
    height: 12px;
    border-radius: 6px;
}

.progress-rounded .progress-fill {
    border-radius: 6px;
}

/* Glow Progress */
.progress-glow {
    background-color: #3B82F6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
    to { box-shadow: 0 0 15px rgba(59, 130, 246, 0.8); }
}

/* Segmented Progress */
.progress-segmented {
    background-image: linear-gradient(
        90deg,
        #E5E7EB 50%,
        transparent 50%
    );
    background-size: 20px 100%;
}

.progress-segmented .progress-fill {
    background-image: linear-gradient(
        90deg,
        #3B82F6 50%,
        #60A5FA 50%
    );
    background-size: 20px 100%;
}

/* Glass Progress */
.progress-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.progress-glass .progress-fill {
    background: rgba(59, 130, 246, 0.7);
    backdrop-filter: blur(5px);
}

/* Double Layer Progress */
.progress-double {
    position: relative;
    background: transparent;
}

.progress-fill-back {
    position: absolute;
    height: 100%;
    background-color: rgba(59, 130, 246, 0.3);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-fill-front {
    position: relative;
    height: 100%;
    background-color: #3B82F6;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Neon Progress */
.progress-neon {
    background-color: #3B82F6;
    box-shadow: 
        0 0 5px #3B82F6,
        0 0 10px #3B82F6,
        0 0 15px #3B82F6;
    animation: neon 1.5s ease-in-out infinite alternate;
}

@keyframes neon {
    from {
        box-shadow: 
            0 0 5px #3B82F6,
            0 0 10px #3B82F6,
            0 0 15px #3B82F6;
    }
    to {
        box-shadow: 
            0 0 10px #3B82F6,
            0 0 20px #3B82F6,
            0 0 30px #3B82F6;
    }
}

/* Hover Effects */
.progress-bar:hover .progress-fill {
    opacity: 0.9;
    transform: scaleY(1.1);
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .progress-rounded {
        height: 10px;
    }
    
    .progress-double {
        height: 8px;
    }
}

/* Soft Button Variants */
.btn-soft-primary {
    background-color: #EFF6FF;
    color: #2563EB;
    border: none;
}

.btn-soft-primary:hover {
    background-color: #DBEAFE;
}

.btn-soft-danger {
    background-color: #FEF2F2;
    color: #DC2626;
    border: none;
}

.btn-soft-danger:hover {
    background-color: #FEE2E2;
}

.btn-soft-success {
    background-color: #ECFDF5;
    color: #059669;
    border: none;
}

.btn-soft-success:hover {
    background-color: #D1FAE5;
}

/* Modal Button Style */
.btn-modal {
    background-color: #F8FAFC;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-modal i {
    font-size: 1rem;
    color: #64748B;
    transition: color 0.2s ease;
}

.btn-modal:hover {
    background-color: #F1F5F9;
    border-color: #CBD5E1;
    transform: translateY(-1px);
}

.btn-modal:hover i {
    color: #0F172A;
}

.btn-modal:active {
    transform: translateY(0);
}