.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
}
.btn-google:hover {
    background-color: #f8f8f8;
}
.auth-container {
    background: linear-gradient(135deg, rgba(0,30,60,0.8) 0%, rgba(0,50,100,0.9) 100%);
}

/**
 * User Center Styles
 */

/* User sidebar styles */
.user-menu-item {
    transition: all 0.2s ease;
}

.user-menu-item:hover {
    background-color: #f3f4f6;
}

.user-menu-item.active {
    background-color: var(--electric-blue);
    color: white;
}

/* User hairstyle card styles */
.hairstyle-card {
    transition: all 0.3s ease;
}

.hairstyle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hairstyle-card .aspect-w-1 {
    position: relative;
    padding-bottom: 100%;
}

.hairstyle-card .aspect-w-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar upload button styles */
#change-avatar-btn {
    transition: all 0.2s ease;
}

#change-avatar-btn:hover {
    background-color: var(--electric-blue);
}

#change-avatar-btn:hover svg {
    color: white;
}

/* Form element styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

/* Button hover effects */
.btn-primary:hover {
    background-color: var(--neon-blue);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

/* Upload area styles */
.upload-zone {
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: var(--electric-blue);
    background-color: rgba(66, 153, 225, 0.05);
}

/* User card animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hairstyle-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Pagination styles */
.pagination-item {
    transition: all 0.2s ease;
}

.pagination-item:hover {
    background-color: #f3f4f6;
}

.pagination-item.active {
    background-color: var(--electric-blue);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hairstyle-card {
        margin-bottom: 1.5rem;
    }
}
.btn-primary {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}