.artstudio_upload_art_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 28px auto;
    padding: 0 2%;
    flex-wrap: wrap;
}


.artstudio_upload_art_section button {
    flex: 1;            /* makes both grow equally */
    padding: 12px 16px; /* consistent spacing */
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;           /* spacing between icon and text */
    border-radius: 8px;
	width:80%;
}
.upload-artwork-btn {
    border-radius: 99px !important;
    background: #5a32d3 !important;                  /* Stronger purple */
    color: #ffffff !important;
    padding: 12px 32px !important;                   /* Matches share button */
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;                             /* Better icon + text spacing */
    box-shadow: 0 4px 12px rgba(90, 50, 211, 0.35) !important;  
    transition: background 0.25s ease,
                box-shadow 0.25s ease,
                transform 0.15s ease;
}

.upload-artwork-btn:hover {
    background: #6a41e6 !important;                 /* Slightly brighter on hover */
    box-shadow: 0 6px 16px rgba(90, 50, 211, 0.45) !important;
}

.upload-artwork-btn:active {
    transform: scale(0.97);
}

.share-studio-btn {
    border-radius: 99px !important;
    background: #555 !important;              /* Slightly lighter to avoid looking dead */
    color: #f5f5f5 !important;                /* Better contrast */
    padding: 12px 28px !important;            /* Gives it the same presence as Upload */
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;                      /* Better spacing between icon + text */
    box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;  /* Matches the premium look */
    transition: background 0.25s ease, 
                box-shadow 0.25s ease,
                transform 0.15s ease;
}

.share-studio-btn:hover {
    background: #666 !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.22) !important;
}

.share-studio-btn:active {
    transform: scale(0.97);
}
