.oaklores-artist-header {
    display: flex ;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
	margin-top:10px;
	
}
.oaklores-artist-header .artist-dp {
	position:relative;
    flex: 0 0 auto;
    display: flex;  
	flex-direction:column;
    align-items: center;      
    justify-content: center;  
	padding:10px;
}
.upload-progress-dp {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size:10px;
    pointer-events: none; /* so clicks pass through */
	text-shadow: 
        0 1px 3px rgba(255,255,255,0.8),
        0 0 6px rgba(255,255,255,0.6);
    
    /* soft backdrop blur to increase readability */
    backdrop-filter: blur(4px);
}
.oaklores-artist-header .artist-dp img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: block;          /* prevents inline-image weird shrinking */
}


.oaklores-artist-header .artist-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.oaklores-artist-header .artist-name {
    font-size: 1.6rem;          /* more presence */
    font-weight: 600;           /* subtle emphasis */
    color: #1a1a1a;             /* deep modern black */
    margin-bottom: 4px;
	text-align:left;
	letter-spacing:1.5px;
}

.oaklores-artist-header .artist-meta {
    font-size: 0.9rem;
    color: #666;                /* subtle, secondary */
    margin-top: 2px;
    line-height: 1.3;
}

.oaklores-artist-header .artist-artforms {
    display: flex;
    flex-wrap: wrap;
	padding:2px;
    gap: 2px;
    max-width: 95%;
    overflow-x: auto;
    align-items: flex-start;
    margin-top: 6px;
	-webkit-overflow-scrolling: touch;
}
.oaklores-artist-header .artist-artforms::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar — Firefox */
.oaklores-artist-header .artist-artforms {
    scrollbar-width: none;
}
.artstudio-artforms-wrapper{
	width:100%;
}

.oaklores-artist-header .artform-pill {
    display: inline-block;
    padding: 1px 10px;
    margin: 3px 0px 0 0;
    background: #f3f4f6;          /* soft neutral */
    color: #333;                  /* readable but subtle */
    font-size: 0.8rem;
    border: 1px solid #e5e7eb;    /* thin, soft outline */
    border-radius: 999px;        /* perfect pill shape */

    white-space: nowrap;
    user-select: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.oaklores-artist-header .artform-pill:hover {
    background: #e8eaf0;           /* very light hover */
    border-color: #d1d5db;
}
.dp-upload-icon{
	text-align:center; 
	margin-top:5px;
	display:block;
}
.dp-upload-icon iconify-icon{
	font-size:24px; 
	border-radius:50%; 
	box-shadow:0 2px 5px rgba(0,0,0,0.25); 
	color:#6750a4; 
	cursor:pointer;
}
.artstudio_artist_stats {
    display: flex;
    justify-content: center;  /* centers the whole block */
    align-items: flex-start;
    gap: 40px; /* spacing between stats */
    text-align: center;
}

.artstudio_artist_stats > div {
    display: flex;
    flex-direction: column; /* stack label and number */
    align-items: center;
    font-family: "Helvetica Neue", sans-serif;
    color: #333;
}

.artstudio_artist_stats > div span.label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artstudio_artist_stats > div span.value {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333; /* highlight color, change to theme green if needed */
}


.inspired-people-list-wrapper {
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
    min-height: 200px;       /* give space so centering is visible */
}

.inspired-people-list-wrapper iconify-icon {
    font-size: 48px;         /* appreciable size */
}
