/* Custom color classes for Tailwind */
:root {
  --color-moss: #4F6F52;
  --color-moss-dark: #3D5A3F;
  --color-moss-light: #739072;
  --color-terra: #E57373;
  --color-terra-light: #F8BBD0;
}

/* Custom Tailwind background colors */
.bg-moss {
  background-color: var(--color-moss) !important;
}

.bg-moss-dark {
  background-color: var(--color-moss-dark) !important;
}

.bg-moss-light {
  background-color: var(--color-moss-light) !important;
}

.bg-terra {
  background-color: var(--color-terra) !important;
}

.bg-terra-light {
  background-color: var(--color-terra-light) !important;
}

/* Custom Tailwind text colors */
.text-moss {
  color: var(--color-moss) !important;
}

.text-moss-dark {
  color: var(--color-moss-dark) !important;
}

.text-moss-light {
  color: var(--color-moss-light) !important;
}

.text-terra {
  color: var(--color-terra) !important;
}

.text-terra-light {
  color: var(--color-terra-light) !important;
}

/* Custom focus ring colors */
.focus\:ring-moss:focus {
  --tw-ring-color: var(--color-moss) !important;
}

.focus\:ring-moss-light:focus {
  --tw-ring-color: var(--color-moss-light) !important;
}

.hover\:bg-moss-dark:hover {
  background-color: var(--color-moss-dark) !important;
}

.hover\:text-moss-dark:hover {
  color: var(--color-moss-dark) !important;
}

.hover\:text-moss:hover {
  color: var(--color-moss) !important;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.dark body {
    background-color: #0f172a;
    color: #f1f5f9;
}

h1, h2, h3, h4, .serif-text {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.dark ::-webkit-scrollbar-track {
    background: #1e293b;
}

.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}

/* Subtle background texture */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a1a1aa' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.dark .bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a1a1aa' fill-opacity='0.06'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Designer card styling */
.designer-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.designer-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.dark .designer-card {
    background-color: #1e293b;
    border-color: #334155;
}

/* Image overlay subtle gradient */
.img-overlay {
    position: relative;
    overflow: hidden;
}

.img-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.outfit-card:hover .img-overlay::after {
    opacity: 1;
}

/* Modern gradient button */
.modern-btn {
    background: linear-gradient(to right, #4F6F52, #739072);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 111, 82, 0.2);
    border-radius: 12px;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.modern-btn:hover::before {
    transform: translateX(0);
}

.modern-btn:hover {
    box-shadow: 0 6px 20px rgba(79, 111, 82, 0.3);
    transform: translateY(-2px);
}

.modern-btn:disabled {
    background: linear-gradient(to right, #94A3B8, #CBD5E1);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.modern-btn:disabled::before {
    display: none;
}

/* Gradient text */
.modern-gradient-text {
    background: linear-gradient(to right, #4F6F52, #E57373);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* API Key input styling */
.api-key-input {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.api-key-input:focus {
    outline: none;
    border-color: #4F6F52;
    box-shadow: 0 0 0 3px rgba(79, 111, 82, 0.1);
}

.dark .api-key-input {
    background-color: #1e293b;
    border-color: #475569;
    color: #f1f5f9;
}

.dark .api-key-input:focus {
    border-color: #739072;
    box-shadow: 0 0 0 3px rgba(115, 144, 114, 0.15);
}

/* Mode selector styling */
.mode-selector {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark .mode-selector {
    background-color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mode-btn {
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    color: #94A3B8;
}

.mode-btn.active {
    color: #4F6F52;
    background-color: rgba(79, 111, 82, 0.05);
}

.dark .mode-btn.active {
    color: #739072;
    background-color: rgba(115, 144, 114, 0.1);
}

.mode-btn svg {
    transition: all 0.3s ease;
}

.mode-btn.active svg {
    transform: scale(1.1);
}

/* Feature tags styling */
.feature-tag {
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: -1;
}

.feature-tag:hover::before {
    transform: translateX(100%);
}

/* Modern upload button */
.upload-btn {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.dark .upload-btn {
    background-color: #1e293b;
    border-color: #475569;
}

.upload-btn:hover {
    border-color: #4F6F52;
    background-color: rgba(79, 111, 82, 0.03);
}

.dark .upload-btn:hover {
    border-color: #739072;
    background-color: rgba(115, 144, 114, 0.05);
}

/* Hide the native file input */
.file-input-hidden {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

/* File upload button style */
.file-upload-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-btn:hover {
    transform: translateY(-2px);
}

/* Gallery preview style */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #E57373;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dark .gallery-item .remove-btn {
    background-color: rgba(30, 41, 59, 0.8);
}

.gallery-item:hover .remove-btn {
    opacity: 1;
}

/* Skin tone button styling */
.skin-tone-btn {
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.dark .skin-tone-btn {
    background-color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skin-tone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.skin-tone-btn.active {
    border-color: #4F6F52;
    box-shadow: 0 0 0 3px rgba(79, 111, 82, 0.1);
}

.dark .skin-tone-btn.active {
    border-color: #739072;
    box-shadow: 0 0 0 3px rgba(115, 144, 114, 0.15);
}

.skin-tone-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 8px;
    border: 2px solid #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark .skin-tone-circle {
    border-color: #1e293b;
}

.skin-tone-btn:hover .skin-tone-circle {
    transform: scale(1.1);
}

/* Card styling */
.modern-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.dark .modern-card {
    background-color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Thumbnail preview styles */
.thumbnail-preview {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.drop-indicator {
    border: 2px dashed #4F6F52;
    background-color: rgba(79, 111, 82, 0.05);
    border-radius: 16px;
}

.dark .drop-indicator {
    border-color: #739072;
    background-color: rgba(115, 144, 114, 0.1);
}

/* Loading spinner */
.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid #4F6F52;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.dark .spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #739072;
}

/* Error styling */
.error-message {
    background-color: rgba(220, 38, 38, 0.1);
    border-left: 4px solid #dc2626;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.dark .error-message {
    background-color: rgba(220, 38, 38, 0.2);
}

/* Results section */
.results-section {
    margin-top: 40px;
}

.outfit-combination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.outfit-combination-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.outfit-details {
    padding: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.dark .outfit-details {
    background-color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced outfit card styling */
.outfit-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(203, 213, 225, 0.4);
    backdrop-filter: blur(10px);
}

.dark .outfit-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.95));
    border: 1px solid rgba(71, 85, 105, 0.4);
}

.outfit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark .outfit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.outfit-images {
    position: relative;
    perspective: 1000px;
}

.outfit-image {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 120%;
    position: relative;
}

.outfit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outfit-card:hover .outfit-image.kameez {
    transform: perspective(1000px) rotateY(-10deg) translateX(-5px);
}

.outfit-card:hover .outfit-image.shalwar {
    transform: perspective(1000px) rotateY(10deg) translateX(5px);
}

.match-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(to right, #4F6F52, #739072);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
}

.dark .match-score {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.outfit-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(79, 111, 82, 0.1);
    color: #4F6F52;
    transition: all 0.3s ease;
}

.dark .outfit-tag {
    background-color: rgba(115, 144, 114, 0.2);
    color: #9BBB9C;
}

.outfit-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.outfit-detail-item {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.outfit-detail-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #4F6F52;
    border-radius: 50%;
}

.dark .outfit-detail-item:before {
    background-color: #739072;
}

.outfit-detail-label {
    font-weight: 600;
    color: #334155;
    margin-right: 0.25rem;
}

.dark .outfit-detail-label {
    color: #94a3b8;
}

/* Styling recommendations section */
.styling-recommendations {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9), rgba(248, 250, 252, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.dark .styling-recommendations {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(51, 65, 85, 0.7);
}

.styling-recommendations:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(79, 111, 82, 0.2), rgba(229, 115, 115, 0.2));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.styling-recommendations h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.styling-recommendations h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #4F6F52, #E57373);
    border-radius: 3px;
}

.recommendation-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
}

.recommendation-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #4F6F52, #739072);
    border-radius: 50%;
}

.recommendation-label {
    font-weight: 600;
    color: #334155;
    margin-right: 0.25rem;
}

.dark .recommendation-label {
    color: #94a3b8;
}

/* Step indicator for API calls */
.step-indicator {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
}

.step-indicator.active::before {
    background-color: #4F6F52;
    border-color: #739072;
}

.step-indicator.completed::before {
    background-color: #4F6F52;
    border-color: #739072;
    content: '✓';
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
}

.dark .step-indicator::before {
    background-color: #1e293b;
    border-color: #334155;
}

.dark .step-indicator.active::before {
    background-color: #4F6F52;
    border-color: #739072;
}

.dark .step-indicator.completed::before {
    background-color: #4F6F52;
    border-color: #739072;
}

/* Image processing card styles */
.image-processing-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.dark .image-processing-card {
    background-color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.processing-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dark .processing-overlay {
    background-color: rgba(30, 41, 59, 0.8);
}

.processing-overlay.active {
    opacity: 1;
}

.image-thumbnail {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-processed {
    border: 2px solid #4F6F52;
}

.dark .image-processed {
    border-color: #739072;
}

/* Analysis tag with checkmark */
.analysis-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(79, 111, 82, 0.1);
    color: #4F6F52;
    margin-top: 0.5rem;
}

.dark .analysis-tag {
    background-color: rgba(115, 144, 114, 0.2);
    color: #9BBB9C;
}

.checkmark-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* Analysis result tag */
.analysis-result {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    font-size: 0.75rem;
    background-color: rgba(79, 111, 82, 0.9);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-processing-card:hover .analysis-result {
    transform: translateY(0);
}

/* Bounce animation for active processing */
.bounce-element {
    animation: bounce-subtle 2s infinite;
}

/* Progress bar style */
.progress-track {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.dark .progress-track {
    background-color: #334155;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #4F6F52, #739072);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Register form skin tone selector styling */
.register-skin-tone-btn {
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    padding: 12px 8px;
}

.dark .register-skin-tone-btn {
    background-color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.register-skin-tone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: rgba(79, 111, 82, 0.02);
}

.dark .register-skin-tone-btn:hover {
    background-color: rgba(115, 144, 114, 0.1);
}

.register-skin-tone-btn.active {
    border-color: #4F6F52;
    box-shadow: 0 0 0 2px rgba(79, 111, 82, 0.2);
    background-color: rgba(79, 111, 82, 0.05);
}

.dark .register-skin-tone-btn.active {
    border-color: #739072;
    box-shadow: 0 0 0 2px rgba(115, 144, 114, 0.3);
    background-color: rgba(115, 144, 114, 0.15);
}

.register-skin-tone-btn div {
    transition: all 0.3s ease;
}

.register-skin-tone-btn:hover div {
    transform: scale(1.1);
}

.register-skin-tone-btn span {
    font-weight: 500;
    transition: all 0.3s ease;
}